mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
88 lines
1.9 KiB
PHP
88 lines
1.9 KiB
PHP
<?php
|
|
declare(strict_types = 1);
|
|
namespace FireflyIII\Helpers\Collection;
|
|
|
|
use Crypt;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use Illuminate\Support\Collection;
|
|
use stdClass;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*
|
|
* Class Income
|
|
*
|
|
* @package FireflyIII\Helpers\Collection
|
|
*/
|
|
class Income
|
|
{
|
|
|
|
/** @var Collection */
|
|
protected $incomes;
|
|
/** @var string */
|
|
protected $total = '0';
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->incomes = new Collection;
|
|
}
|
|
|
|
/**
|
|
* @param TransactionJournal $entry
|
|
*/
|
|
public function addOrCreateIncome(TransactionJournal $entry)
|
|
{
|
|
|
|
$accountId = $entry->account_id;
|
|
if (!$this->incomes->has($accountId)) {
|
|
$newObject = new stdClass;
|
|
$newObject->amount = strval(round($entry->journalAmount, 2));
|
|
$newObject->name = Crypt::decrypt($entry->account_name);
|
|
$newObject->count = 1;
|
|
$newObject->id = $accountId;
|
|
$this->incomes->put($accountId, $newObject);
|
|
} else {
|
|
$existing = $this->incomes->get($accountId);
|
|
$existing->amount = bcadd($existing->amount, $entry->journalAmount);
|
|
$existing->count++;
|
|
$this->incomes->put($accountId, $existing);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string $add
|
|
*/
|
|
public function addToTotal(string $add)
|
|
{
|
|
$add = strval(round($add, 2));
|
|
$this->total = bcadd($this->total, $add);
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getIncomes(): Collection
|
|
{
|
|
$set = $this->incomes->sortByDesc(
|
|
function (stdClass $object) {
|
|
return $object->amount;
|
|
}
|
|
);
|
|
|
|
return $set;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTotal(): string
|
|
{
|
|
return strval(round($this->total, 2));
|
|
}
|
|
|
|
|
|
}
|