diff --git a/app/Repositories/Bill/BillRepository.php b/app/Repositories/Bill/BillRepository.php index 2ebc3cf812..cf05afec22 100644 --- a/app/Repositories/Bill/BillRepository.php +++ b/app/Repositories/Bill/BillRepository.php @@ -154,7 +154,7 @@ class BillRepository implements BillRepositoryInterface } $journals = new Collection; if (count($ids) > 0) { - $journals = Auth::user()->transactionjournals()->whereIn('id', $ids)->get(); + $journals = Auth::user()->transactionjournals()->transactionTypes(['Withdrawal'])->whereIn('id', $ids)->get(); } return $journals;