feat: add opening quantity, cost and date to items.

This commit is contained in:
a.bouhuolia
2020-12-23 21:31:17 +02:00
parent b07bb2df53
commit 47b40f6940
9 changed files with 146 additions and 18 deletions

View File

@@ -21,6 +21,11 @@ export interface IItem{
purchaseDescription: string,
quantityOnHand: number,
openingQuantity: number,
openingCost: number,
openingDate: Date,
note: string,
active: boolean,
@@ -52,6 +57,11 @@ export interface IItemDTO {
purchaseDescription: string,
quantityOnHand: number,
openingQuantity?: number,
openingCost?: number,
openingDate?: Date,
note: string,
active: boolean,