浏览代码

udpate

MergeProblem1
CANCERYS\kw093 6 天前
父节点
当前提交
9aecdbbf88
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/components/StockTakeManagement/ApproverStockTakeAll.tsx

+ 1
- 1
src/components/StockTakeManagement/ApproverStockTakeAll.tsx 查看文件

@@ -299,7 +299,7 @@ const ApproverStockTakeAll: React.FC<ApproverStockTakeAllProps> = ({
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,


正在加载...
取消
保存