mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: rewrite repositories with base entity repository class.
feat: sales and purchases status. feat: sales and purchases auto-increment number. fix: settings find query with extra columns.
This commit is contained in:
@@ -7,7 +7,9 @@ export interface ISaleInvoice {
|
||||
invoiceDate: Date,
|
||||
dueDate: Date,
|
||||
dueAmount: number,
|
||||
customerId: number,
|
||||
entries: IItemEntry[],
|
||||
deliveredAt: string|Date,
|
||||
}
|
||||
|
||||
export interface ISaleInvoiceOTD {
|
||||
@@ -19,8 +21,17 @@ export interface ISaleInvoiceOTD {
|
||||
invoiceMessage: string,
|
||||
termsConditions: string,
|
||||
entries: IItemEntryDTO[],
|
||||
delivered: boolean,
|
||||
}
|
||||
|
||||
export interface ISaleInvoiceCreateDTO extends ISaleInvoiceOTD {
|
||||
fromEstiamteId: number,
|
||||
};
|
||||
|
||||
export interface ISaleInvoiceEditDTO extends ISaleInvoiceOTD {
|
||||
|
||||
};
|
||||
|
||||
export interface ISalesInvoicesFilter{
|
||||
page: number,
|
||||
pageSize: number,
|
||||
|
||||
Reference in New Issue
Block a user