fix: sync inventory items quantity with services.

This commit is contained in:
a.bouhuolia
2021-02-28 14:45:13 +02:00
parent 0fd5eb34c6
commit fb9d68c2cf
9 changed files with 147 additions and 210 deletions

View File

@@ -29,4 +29,9 @@ export interface IInventoryLotCost {
transactionType: string,
transactionId: number,
entryId: number
}
};
export interface IItemsQuantityChanges {
itemId: number,
balanceChange: number,
};