소스 검색

udpate

MergeProblem1
CANCERYS\kw093 4 일 전
부모
커밋
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,


불러오는 중...
취소
저장