mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 09:51:21 -06:00
More narrow result for popup. [skip ci]
This commit is contained in:
parent
b22dd29835
commit
04dee404c0
@ -212,15 +212,18 @@ class ReportController extends Controller
|
||||
private function incomeEntry(array $attributes): string
|
||||
{
|
||||
/** @var AccountRepositoryInterface $repository */
|
||||
$repository = app(AccountRepositoryInterface::class);
|
||||
$account = $repository->find(intval($attributes['accountId']));
|
||||
$types = [TransactionType::DEPOSIT, TransactionType::TRANSFER];
|
||||
$journals = $repository->journalsInPeriod(new Collection([$account]), $types, $attributes['startDate'], $attributes['endDate']);
|
||||
|
||||
$repository = app(AccountRepositoryInterface::class);
|
||||
$account = $repository->find(intval($attributes['accountId']));
|
||||
$types = [TransactionType::DEPOSIT, TransactionType::TRANSFER];
|
||||
$journals = $repository->journalsInPeriod(new Collection([$account]), $types, $attributes['startDate'], $attributes['endDate']);
|
||||
$destinations = $attributes['accounts']->pluck('id')->toArray();
|
||||
// filter for transfers and withdrawals FROM the given $account
|
||||
$journals = $journals->filter(
|
||||
function (TransactionJournal $journal) use ($account) {
|
||||
if ($journal->source_account_id === $account->id) {
|
||||
function (TransactionJournal $journal) use ($account, $destinations) {
|
||||
if (
|
||||
$journal->source_account_id === $account->id &&
|
||||
in_array($journal->destination_account_id, $destinations)
|
||||
) {
|
||||
return $journal;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user