fix: design flow of writing invoice journal entries.

This commit is contained in:
a.bouhuolia
2021-01-04 17:19:27 +02:00
parent 999e74b405
commit d5151c365e
15 changed files with 377 additions and 473 deletions

View File

@@ -9,7 +9,8 @@ export interface ISaleInvoice {
dueAmount: number,
customerId: number,
entries: IItemEntry[],
deliveredAt: string|Date,
deliveredAt: string | Date,
userId: number,
}
export interface ISaleInvoiceDTO {