mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
feat(invoices|receipts|estimates|payments): auto-increment backend logic based.
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user