diff --git a/src/components/StockTakeManagement/ApproverStockTakeAll.tsx b/src/components/StockTakeManagement/ApproverStockTakeAll.tsx index 1be6453..734649b 100644 --- a/src/components/StockTakeManagement/ApproverStockTakeAll.tsx +++ b/src/components/StockTakeManagement/ApproverStockTakeAll.tsx @@ -299,7 +299,7 @@ const ApproverStockTakeAll: React.FC = ({ detail.bookQty != null ? detail.bookQty : (detail.availableQty || 0); if (bookQty === 0) return difference !== 0; const threshold = Math.abs(bookQty) * (thresholdPercent / 100); - return Math.abs(difference) > threshold; + return Math.abs(difference) >= threshold; }); }, [ inventoryLotDetails,