mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-02-08 05:04:19 +00:00
67 lines
2.4 KiB
PHP
67 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Events\Model\TransactionGroup;
|
|
|
|
use FireflyIII\Models\Transaction;
|
|
use FireflyIII\Models\TransactionGroup;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* This class collects all objects before and after the creation, removal or updating
|
|
* of a transaction group. The idea is that this class contains all relevant objects.
|
|
* Right now, that means journals, tags, accounts, budgets and categories.
|
|
*
|
|
* By collecting these objects (in case of an update: before AND after update) there
|
|
* is a unified set of objects to manage: update balances, recalculate credits, etc.
|
|
*/
|
|
class TransactionGroupEventObjects
|
|
{
|
|
public Collection $accounts;
|
|
public Collection $budgets;
|
|
public Collection $categories;
|
|
public Collection $tags;
|
|
public Collection $transactionGroups;
|
|
public Collection $transactionJournals;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->accounts = new Collection();
|
|
$this->budgets = new Collection();
|
|
$this->categories = new Collection();
|
|
$this->tags = new Collection();
|
|
$this->transactionGroups = new Collection();
|
|
$this->transactionJournals = new Collection();
|
|
}
|
|
|
|
public static function collectFromTransactionGroup(TransactionGroup $transactionGroup): self
|
|
{
|
|
Log::debug(sprintf('collectFromTransactionGroup(#%d)', $transactionGroup->id));
|
|
$object = new self();
|
|
$object->appendFromTransactionGroup($transactionGroup);
|
|
|
|
return $object;
|
|
}
|
|
|
|
public function appendFromTransactionGroup(TransactionGroup $transactionGroup): void
|
|
{
|
|
$this->transactionGroups->push($transactionGroup);
|
|
|
|
/** @var TransactionJournal $journal */
|
|
foreach ($transactionGroup->transactionJournals as $journal) {
|
|
$this->transactionJournals->push($journal);
|
|
$this->budgets = $this->budgets->merge($journal->budgets);
|
|
$this->categories = $this->categories->merge($journal->categories);
|
|
$this->tags = $this->tags->merge($journal->tags);
|
|
|
|
/** @var Transaction $transaction */
|
|
foreach ($journal->transactions as $transaction) {
|
|
$this->accounts->push($transaction->account);
|
|
}
|
|
}
|
|
}
|
|
}
|