feat: compute items cost of inventory adjustments transcations.

This commit is contained in:
a.bouhuolia
2021-01-10 17:41:32 +02:00
parent 097b9fdb3a
commit 8491d44118
20 changed files with 433 additions and 180 deletions

View File

@@ -22,10 +22,6 @@ export interface IItem{
quantityOnHand: number,
openingQuantity: number,
openingCost: number,
openingDate: Date,
note: string,
active: boolean,
@@ -58,10 +54,6 @@ export interface IItemDTO {
quantityOnHand: number,
openingQuantity?: number,
openingCost?: number,
openingDate?: Date,
note: string,
active: boolean,