warehouseId
warehouseId: string
warehouse
warehouse: { id: string; name: string; code: string }
OptionalrawMaterialId
rawMaterialId?: string
OptionalfinishedProductId
finishedProductId?: string
product
product: {
id: string;
name: string;
code: string;
category?: { id: string; name: string };
cost?: number;
minStockLevel?: number;
maxStockLevel?: number;
reorderPoint?: number;
}
productType
productType: "RAW_MATERIAL" | "FINISHED_PRODUCT"
currentStock
currentStock: number
minStockLevel
minStockLevel: number
maxStockLevel
maxStockLevel: number | null
reorderPoint
reorderPoint: number
lastMovementDate
lastMovementDate: string
stockStatus
stockStatus: "NORMAL" | "OUT_OF_STOCK" | "LOW_STOCK" | "OVERSTOCK"
stats
stats: {
currentStock: number;
minStockLevel: number;
maxStockLevel: number | null;
reorderPoint: number;
totalMovements: number;
lastMovementDate: string | null;
averageDailyConsumption: number;
daysOfStock: number;
}