|
|
@@ -349,7 +349,7 @@ const PutawayForm: React.FC<Props> = ({ itemDetail, warehouse, disabled }) => { |
|
|
|
getOptionLabel={(option) => option.label} |
|
|
|
options={options} |
|
|
|
renderInput={(params) => ( |
|
|
|
<TextField {...params} label="Default Warehouse" /> |
|
|
|
<TextField {...params} label={t("Default Warehouse")} /> |
|
|
|
)} |
|
|
|
/> |
|
|
|
</FormControl> |
|
|
@@ -371,7 +371,7 @@ const PutawayForm: React.FC<Props> = ({ itemDetail, warehouse, disabled }) => { |
|
|
|
/> |
|
|
|
</Grid> |
|
|
|
<Grid item xs={1}> |
|
|
|
<Button disabled={disabled} onClick={onOpenScanner}>bind</Button> |
|
|
|
<Button disabled={disabled} onClick={onOpenScanner}>{t("bind")}</Button> |
|
|
|
</Grid> |
|
|
|
<Grid item xs={5.5}> |
|
|
|
{/* <Controller |
|
|
|