feat(invoices|receipts|estimates|payments): auto-increment backend logic based.

This commit is contained in:
a.bouhuolia
2021-03-07 16:14:59 +02:00
parent c245f4249d
commit 42ce791713
17 changed files with 482 additions and 201 deletions

View File

@@ -6,6 +6,7 @@ export interface ISaleEstimate {
amount: number,
customerId: number,
estimateDate: Date,
estimateNumber: string,
reference: string,
note: string,
termsConditions: string,
@@ -19,8 +20,8 @@ export interface ISaleEstimate {
export interface ISaleEstimateDTO {
customerId: number,
estimateDate?: Date,
reference: string,
estimateNumber: string,
reference?: string,
estimateNumber?: string,
entries: IItemEntry[],
note: string,
termsConditions: string,

View File

@@ -22,7 +22,8 @@ export interface ISaleReceiptDTO {
depositAccountId: number;
receiptDate: Date;
sendToEmail: string;
referenceNo: string;
referenceNo?: string;
receiptNumber?: string,
receiptMessage: string;
statement: string;
closed: boolean;