fix: transaction type in customer/vendor transactions report.

This commit is contained in:
a.bouhuolia
2021-05-09 03:10:36 +02:00
parent 8566ce126e
commit bd7c9db5f6
10 changed files with 40 additions and 19 deletions

View File

@@ -15,4 +15,6 @@ export interface ILedgerEntry {
accountNormal: string;
contactId?: number;
date: Date | string;
transactionType: string,
transactionNumber: string,
}

View File

@@ -13,7 +13,7 @@ export interface ITransactionsByContactsTransaction {
accountName: string,
runningBalance: ITransactionsByContactsAmount;
currencyCode: string;
referenceNumber: string;
transactionType: string;
transactionNumber: string;
createdAt: string|Date,
};