Fixed a bug where incoming transactions would not be properly filtered in several reports.

This commit is contained in:
James Cole
2016-10-01 09:37:18 +02:00
parent 0fdaac53d0
commit b494be228b
2 changed files with 20 additions and 17 deletions

View File

@@ -377,7 +377,10 @@ class AccountRepository implements AccountRepositoryInterface
* The destination of a transfer must be one of the $accounts in order to
* be included. Otherwise, it would not be income.
*/
if (in_array($journal->destination_account_id, $accountIds)) {
$destinations = TransactionJournal::destinationAccountList($journal)->pluck('id')->toArray();
if (count(array_intersect($destinations, $accountIds)) > 0) {
// at least one of $target is in $haystack
return true;
}