|
|
|
@@ -278,7 +278,9 @@ const PickExecutionForm: React.FC<PickExecutionFormProps> = ({ |
|
|
|
return ( |
|
|
|
<Dialog open={open} onClose={handleClose} maxWidth="sm" fullWidth> |
|
|
|
<DialogTitle> |
|
|
|
{t("Pick Execution Issue Form") + " - "+selectedPickOrderLine.itemCode+ " "+ selectedPickOrderLine.itemName} |
|
|
|
{t("Pick Execution Issue Form") } |
|
|
|
<br /> |
|
|
|
{selectedPickOrderLine.itemCode+ " "+ selectedPickOrderLine.itemName} |
|
|
|
<br /> |
|
|
|
{selectedLot.lotNo} |
|
|
|
</DialogTitle> |
|
|
|
@@ -333,20 +335,6 @@ const PickExecutionForm: React.FC<PickExecutionFormProps> = ({ |
|
|
|
/> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
<Grid item xs={12}> |
|
|
|
<FormControl fullWidth> |
|
|
|
<InputLabel>{t("Reason")}</InputLabel> |
|
|
|
<Select |
|
|
|
value={formData.reason || ""} |
|
|
|
onChange={(e) => handleInputChange("reason", e.target.value)} |
|
|
|
label={t("Reason")} |
|
|
|
> |
|
|
|
<MenuItem value="">{t("Select Reason")}</MenuItem> |
|
|
|
<MenuItem value="miss">{t("Edit")}</MenuItem> |
|
|
|
<MenuItem value="bad">{t("Just Complete")}</MenuItem> |
|
|
|
</Select> |
|
|
|
</FormControl> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
<Grid item xs={12}> |
|
|
|
<TextField |
|
|
|
@@ -422,6 +410,21 @@ const PickExecutionForm: React.FC<PickExecutionFormProps> = ({ |
|
|
|
/> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
<Grid item xs={12}> |
|
|
|
<FormControl fullWidth> |
|
|
|
<InputLabel>{t("Remark")}</InputLabel> |
|
|
|
<Select |
|
|
|
value={formData.reason || ""} |
|
|
|
onChange={(e) => handleInputChange("reason", e.target.value)} |
|
|
|
label={t("Remark")} |
|
|
|
> |
|
|
|
<MenuItem value="">{t("Select Reason")}</MenuItem> |
|
|
|
<MenuItem value="miss">{t("Edit")}</MenuItem> |
|
|
|
<MenuItem value="bad">{t("Just Complete")}</MenuItem> |
|
|
|
</Select> |
|
|
|
</FormControl> |
|
|
|
</Grid> |
|
|
|
</Box> |
|
|
|
</DialogContent> |
|
|
|
<DialogActions> |
|
|
|
|