feat(sales): currency code associated from invoice customer.

feat(purchases): currency code associated from vendor customer.
This commit is contained in:
a.bouhuolia
2021-03-08 09:47:04 +02:00
parent 6ec4ee4f0f
commit 3a3d881f67
26 changed files with 292 additions and 196 deletions

View File

@@ -25,6 +25,7 @@ export interface IPaymentReceiveCreateDTO {
};
export interface IPaymentReceiveEditDTO {
customerId: number,
paymentDate: Date,
amount: number,
referenceNo: string,

View File

@@ -4,6 +4,7 @@ import { IDynamicListFilterDTO } from 'interfaces/DynamicFilter';
export interface ISaleEstimate {
id?: number,
amount: number,
currencyCode: string,
customerId: number,
estimateDate: Date,
estimateNumber: string,

View File

@@ -5,6 +5,7 @@ export interface ISaleInvoice {
id: number,
balance: number,
paymentAmount: number,
currencyCode: string,
invoiceDate: Date,
dueDate: Date,
dueAmount: number,

View File

@@ -10,6 +10,7 @@ export interface ISaleReceipt {
receiptMessage: string;
receiptNumber: string;
amount: number;
currencyCode: string,
statement: string;
closedAt: Date | string;
entries: any[];