Merge pull request #7676 from timendum/master

Rule ConvertToDeposit: fix missing parameter
This commit is contained in:
James Cole
2023-06-20 20:03:57 +02:00
committed by GitHub

View File

@@ -206,7 +206,7 @@ class ConvertToDeposit implements ActionInterface
// update the source transaction and put in the new revenue ID.
DB::table('transactions')
->where('transaction_journal_id', '=', )
->where('transaction_journal_id', '=', $journal->id)
->where('amount', '<', 0)
->update(['account_id' => $opposingAccount->id]);