mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +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:
@@ -11,6 +11,7 @@ export interface IBillDTO {
|
||||
note: string,
|
||||
amount: number,
|
||||
paymentAmount: number,
|
||||
open: boolean,
|
||||
entries: IItemEntryDTO[],
|
||||
};
|
||||
|
||||
@@ -24,6 +25,7 @@ export interface IBillEditDTO {
|
||||
note: string,
|
||||
amount: number,
|
||||
paymentAmount: number,
|
||||
open: boolean,
|
||||
entries: IItemEntryDTO[],
|
||||
};
|
||||
|
||||
@@ -41,6 +43,7 @@ export interface IBill {
|
||||
paymentAmount: number,
|
||||
|
||||
invLotNumber: string,
|
||||
openedAt: Date | string,
|
||||
|
||||
entries: IItemEntry[],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user