feat: prepard expenses of payment made transactions

This commit is contained in:
Ahmed Bouhuolia
2024-07-24 02:18:32 +02:00
parent 341d47cc7b
commit b68d180785
17 changed files with 162 additions and 46 deletions

View File

@@ -119,3 +119,11 @@ export enum IPaymentMadeAction {
Delete = 'Delete',
View = 'View',
}
export interface IPaymentPrepardExpensesAppliedEventPayload {
tenantId: number;
billPaymentId: number;
billId: number;
appliedAmount: number;
trx?: Knex.Transaction;
}