Update invoice event when matching on invoice transactions

This commit is contained in:
David Bomba 2025-01-13 16:01:57 +11:00
parent 2e97cc84ea
commit f87cac3583
1 changed files with 3 additions and 0 deletions

View File

@ -323,6 +323,9 @@ class MatchBankTransactions implements ShouldQueue
->updatePaidToDate($_amount)
->setCalculatedStatus()
->save();
event('eloquent.updated: App\Models\Invoice', $this->invoice);
}
});
}, 2);