feat: average rate cost method.

This commit is contained in:
a.bouhuolia
2020-12-22 22:27:54 +02:00
parent c327c79612
commit 061b50c671
21 changed files with 787 additions and 409 deletions

View File

@@ -10,6 +10,7 @@ export interface IInventoryTransaction {
transactionType: string,
transactionId: string,
lotNumber: string,
entryId: number
};
export interface IInventoryLotCost {
@@ -19,7 +20,9 @@ export interface IInventoryLotCost {
itemId: number,
rate: number,
remaining: number,
cost: number,
lotNumber: string|number,
transactionType: string,
transactionId: string,
entryId: number
}