From 458cc571b6586aafea99e82886f43807259ddb41 Mon Sep 17 00:00:00 2001 From: tommy Date: Tue, 14 Jul 2026 12:28:17 +0800 Subject: [PATCH] no message --- .../ProductionProcess/ProductionProcessJobOrderDetail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx b/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx index 694911a..4859629 100644 --- a/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx +++ b/src/components/ProductionProcess/ProductionProcessJobOrderDetail.tsx @@ -254,7 +254,7 @@ const isStockSufficient = (line: JobOrderLineInfo) => { if (stockAvailable === null) { return false; } - return stockAvailable >= line.reqQty; + return stockAvailable >= line.stockReqQty; }; const stockCounts = useMemo(() => { const nonConsumablesLines = jobOrderLines.filter(