fix: filter the uncategorized transactions out of matched transactions

This commit is contained in:
Ahmed Bouhuolia
2024-07-03 17:23:12 +02:00
parent 91730d204e
commit 67b519db61
19 changed files with 98 additions and 91 deletions

View File

@@ -17,15 +17,15 @@ export class ValidateMatchingOnPaymentMadeDelete {
public attach(bus) {
bus.subscribe(
events.billPayment.onDeleting,
this.validateMatchingOnPaymentMadeDelete.bind(this)
this.validateMatchingOnPaymentMadeDeleting.bind(this)
);
}
/**
*
* Validates the payment made transaction whether matched with bank transaction on deleting.
* @param {IPaymentReceiveDeletedPayload}
*/
public async validateMatchingOnPaymentMadeDelete({
public async validateMatchingOnPaymentMadeDeleting({
tenantId,
oldBillPayment,
trx,