2015-06-05 03:02:40 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Shared;
|
|
|
|
|
|
|
|
use Carbon\Carbon;
|
2015-12-11 10:53:17 -06:00
|
|
|
use FireflyIII\Models\Account;
|
2015-12-09 18:39:50 -06:00
|
|
|
use FireflyIII\Models\TransactionType;
|
2015-06-05 12:02:23 -05:00
|
|
|
use FireflyIII\Support\CacheProperties;
|
2015-06-05 03:02:40 -05:00
|
|
|
use Illuminate\Database\Query\JoinClause;
|
2015-12-11 10:53:17 -06:00
|
|
|
use Illuminate\Support\Collection;
|
2015-06-05 03:02:40 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ComponentRepository
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Repositories\Shared
|
|
|
|
*/
|
|
|
|
class ComponentRepository
|
|
|
|
{
|
|
|
|
|
2015-12-11 10:53:17 -06:00
|
|
|
/**
|
|
|
|
* @param $object
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
* @param Collection $accounts
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-12-24 03:27:45 -06:00
|
|
|
protected function commonBalanceInPeriod($object, Carbon $start, Carbon $end, Collection $accounts)
|
2015-12-11 10:53:17 -06:00
|
|
|
{
|
|
|
|
$cache = new CacheProperties; // we must cache this.
|
|
|
|
$cache->addProperty($object->id);
|
|
|
|
$cache->addProperty(get_class($object));
|
|
|
|
$cache->addProperty($start);
|
|
|
|
$cache->addProperty($end);
|
|
|
|
$cache->addProperty($accounts);
|
|
|
|
$cache->addProperty('balanceInPeriodList');
|
|
|
|
|
|
|
|
$ids = [];
|
|
|
|
/** @var Account $account */
|
|
|
|
foreach ($accounts as $account) {
|
|
|
|
$ids[] = $account->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cache->has()) {
|
|
|
|
return $cache->get(); // @codeCoverageIgnore
|
|
|
|
}
|
|
|
|
|
|
|
|
$sum = $object->transactionjournals()
|
|
|
|
->transactionTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::OPENING_BALANCE])
|
|
|
|
->before($end)
|
|
|
|
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
|
|
|
|
->leftJoin('accounts', 'accounts.id', '=', 'transactions.account_id')
|
|
|
|
->whereIn('accounts.id', $ids)
|
|
|
|
->after($start)
|
|
|
|
->get(['transaction_journals.*'])->sum('amount');
|
|
|
|
|
|
|
|
$cache->store($sum);
|
|
|
|
|
|
|
|
return $sum;
|
|
|
|
}
|
2015-06-05 06:39:24 -05:00
|
|
|
}
|