refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
127
app/Models/Journal/JournalEntry.php
Normal file
127
app/Models/Journal/JournalEntry.php
Normal file
@@ -0,0 +1,127 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Journal;
|
||||
|
||||
use App\Helpers\DateHelper;
|
||||
use App\Models\Account\Account;
|
||||
use App\Models\ModelBinding as Model;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use App\Interfaces\IsJournalableInterface;
|
||||
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property Account $account
|
||||
* @property User $invitedBy
|
||||
* @property int $account_id
|
||||
* @property IsJournalableInterface $journalable
|
||||
* @property int $journalable_id
|
||||
* @property string $journalable_type
|
||||
* @property \Carbon\Carbon|null $date
|
||||
*/
|
||||
class JournalEntry extends Model
|
||||
{
|
||||
/**
|
||||
* The attributes that aren't mass assignable.
|
||||
*
|
||||
* @var array<string>|bool
|
||||
*/
|
||||
protected $guarded = ['id'];
|
||||
|
||||
protected $table = 'journal_entries';
|
||||
|
||||
protected $dates = [
|
||||
'date',
|
||||
];
|
||||
|
||||
/**
|
||||
* Eager load with every entry.
|
||||
*/
|
||||
protected $with = [
|
||||
'journalable',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get all of the owning "journal-able" models.
|
||||
*
|
||||
* @return MorphTo
|
||||
*/
|
||||
public function journalable()
|
||||
{
|
||||
return $this->morphTo();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the account record associated with the journal entry.
|
||||
*
|
||||
* @return BelongsTo
|
||||
*/
|
||||
public function account()
|
||||
{
|
||||
return $this->belongsTo(Account::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a new entry in the journal.
|
||||
*
|
||||
* @param \App\Interfaces\IsJournalableInterface $resourceToLog
|
||||
* @return self
|
||||
*/
|
||||
public static function add(IsJournalableInterface $resourceToLog): self
|
||||
{
|
||||
$journal = new self;
|
||||
$journal->account_id = $resourceToLog->account_id;
|
||||
$journal->date = now(DateHelper::getTimezone());
|
||||
if ($resourceToLog instanceof \App\Models\Account\Activity) {
|
||||
$journal->date = $resourceToLog->happened_at;
|
||||
} elseif ($resourceToLog instanceof \App\Models\Journal\Entry) {
|
||||
$journal->date = $resourceToLog->attributes['date'];
|
||||
}
|
||||
$journal->save();
|
||||
$resourceToLog->journalEntries()->save($journal);
|
||||
|
||||
return $journal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update an entry in the journal.
|
||||
*
|
||||
* @param \App\Interfaces\IsJournalableInterface $resourceToLog
|
||||
* @return self
|
||||
*/
|
||||
public function edit(IsJournalableInterface $resourceToLog): self
|
||||
{
|
||||
if ($resourceToLog instanceof \App\Models\Journal\Entry) {
|
||||
$this->date = $resourceToLog->attributes['date'];
|
||||
}
|
||||
$this->save();
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the information about the object represented by the Journal Entry.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getObjectData()
|
||||
{
|
||||
// Instantiating the object
|
||||
/** @var IsJournalableInterface */
|
||||
$correspondingObject = $this->journalable;
|
||||
|
||||
return $correspondingObject->getInfoForJournalEntry();
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter by real entry (day rate or journal entry).
|
||||
*
|
||||
* @param Builder $query
|
||||
* @return Builder
|
||||
*/
|
||||
public function scopeEntry(Builder $query): Builder
|
||||
{
|
||||
return $query->where('journalable_type', '!=', 'App\Models\Account\Activity');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user