fix: matching bank transactions should create associate payment transactions for bills and invoicese. (#606)

This commit is contained in:
Ahmed Bouhuolia
2024-08-14 19:23:15 +02:00
committed by GitHub
parent f6ce761a27
commit b12f090d13
3 changed files with 137 additions and 8 deletions

View File

@@ -67,7 +67,7 @@ export interface IPaymentReceivedEntry {
export interface IPaymentReceivedEntryDTO {
id?: number;
index: number;
paymentReceiveId: number;
paymentReceiveId?: number;
invoiceId: number;
paymentAmount: number;
}