diff --git a/reports/inventory/helpers.ts b/reports/inventory/helpers.ts index b4bedde9..c1bf70de 100644 --- a/reports/inventory/helpers.ts +++ b/reports/inventory/helpers.ts @@ -169,6 +169,7 @@ function getSBE( item, location, + batchNumber, balanceQuantity: 0, balanceValue: 0, diff --git a/reports/inventory/types.ts b/reports/inventory/types.ts index b83244b1..ca433753 100644 --- a/reports/inventory/types.ts +++ b/reports/inventory/types.ts @@ -20,8 +20,8 @@ export interface ComputedStockLedgerEntry{ item: string; location:string; - batchNumber: string; + quantity: number; balanceQuantity: number; @@ -41,6 +41,7 @@ export interface StockBalanceEntry{ item: string; location:string; + batchNumber: string; balanceQuantity: number; balanceValue: number;