| @@ -3848,14 +3848,14 @@ paginatedData.map((lot, index) => { | |||||
| variant="outlined" | variant="outlined" | ||||
| size="small" | size="small" | ||||
| onClick={() => handlePickExecutionForm(lot)} | onClick={() => handlePickExecutionForm(lot)} | ||||
| /* | |||||
| disabled={ | disabled={ | ||||
| lot.lotAvailability === 'expired' || | lot.lotAvailability === 'expired' || | ||||
| lot.stockOutLineStatus === 'completed' || | lot.stockOutLineStatus === 'completed' || | ||||
| (Number(lot.stockOutLineId) > 0 && actionBusyBySolId[Number(lot.stockOutLineId)] === true) | (Number(lot.stockOutLineId) > 0 && actionBusyBySolId[Number(lot.stockOutLineId)] === true) | ||||
| } | } | ||||
| */ | |||||
| disabled={true} | |||||
| // disabled={true} | |||||
| sx={{ | sx={{ | ||||
| fontSize: '0.7rem', | fontSize: '0.7rem', | ||||
| py: 0.5, | py: 0.5, | ||||
| @@ -780,7 +780,7 @@ const prevAdjustmentModalOpenRef = useRef(false); | |||||
| label={t("Print Qty")} | label={t("Print Qty")} | ||||
| type="number" | type="number" | ||||
| value={printQty} | value={printQty} | ||||
| onChange={(e) => setPrintQty(Math.max(1, parseInt(e.target.value) || 1))} | |||||
| onChange={(e) => setPrintQty(Math.max(1, parseInt(e.target.value) ))} | |||||
| inputProps={{ min: 1 }} | inputProps={{ min: 1 }} | ||||
| fullWidth | fullWidth | ||||
| /> | /> | ||||
| @@ -2979,7 +2979,7 @@ const sortedData = [...sourceData].sort((a, b) => { | |||||
| variant="outlined" | variant="outlined" | ||||
| size="small" | size="small" | ||||
| onClick={() => handlePickExecutionForm(lot)} | onClick={() => handlePickExecutionForm(lot)} | ||||
| /* | |||||
| disabled={ | disabled={ | ||||
| lot.lotAvailability === "expired" || | lot.lotAvailability === "expired" || | ||||
| lot.stockOutLineStatus === "completed" || | lot.stockOutLineStatus === "completed" || | ||||
| @@ -2988,8 +2988,8 @@ const sortedData = [...sourceData].sort((a, b) => { | |||||
| (Number(lot.stockOutLineId) > 0 && | (Number(lot.stockOutLineId) > 0 && | ||||
| actionBusyBySolId[Number(lot.stockOutLineId)] === true) | actionBusyBySolId[Number(lot.stockOutLineId)] === true) | ||||
| } | } | ||||
| */ | |||||
| disabled={true} | |||||
| //</Stack>disabled={true} | |||||
| sx={{ | sx={{ | ||||
| fontSize: '0.7rem', | fontSize: '0.7rem', | ||||
| py: 0.5, | py: 0.5, | ||||