mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-26 02:40:43 -06:00
Fix ambiguous id.
This commit is contained in:
parent
66fb63661f
commit
0bd18f94ac
@ -154,7 +154,7 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
}
|
}
|
||||||
$journals = new Collection;
|
$journals = new Collection;
|
||||||
if (count($ids) > 0) {
|
if (count($ids) > 0) {
|
||||||
$journals = Auth::user()->transactionjournals()->transactionTypes(['Withdrawal'])->whereIn('id', $ids)->get();
|
$journals = Auth::user()->transactionjournals()->transactionTypes(['Withdrawal'])->whereIn('transaction_journals.id', $ids)->get();
|
||||||
}
|
}
|
||||||
|
|
||||||
return $journals;
|
return $journals;
|
||||||
|
Loading…
Reference in New Issue
Block a user