소스 검색

jo match first fix

bomUpdateTest
CANCERYS\kw093 3 일 전
부모
커밋
f76c352288
1개의 변경된 파일4개의 추가작업 그리고 6개의 파일을 삭제
  1. +4
    -6
      src/components/Jodetail/JobPickExecutionsecondscan.tsx

+ 4
- 6
src/components/Jodetail/JobPickExecutionsecondscan.tsx 파일 보기

@@ -1206,12 +1206,10 @@ const JobPickExecution: React.FC<Props> = ({ filterArgs, onBack }) => {
const completedMatchQty = Number(lot.matchQty ?? 0);
const isSubmitted = lot.matchQty > 0;
const isUnavailable =
lot.lotAvailability === "expired" ||
lot.lotAvailability === "status_unavailable" ||
lot.lotAvailability === "rejected";
const rowLocked = itemCompleted || isUnavailable;
// Matching is post-pick: source lot available/unavailable must not lock the row.
// Still lock rejected lots and already-matched items.
const isRejected = lot.lotAvailability === "rejected";
const rowLocked = itemCompleted || isRejected;
return (
<TableRow
key={`${lot.pickOrderLineId}-${lot.lotId}`}


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