From f6fe949db75c0879ca506eadce6976eb94492d09 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期六, 24 五月 2025 15:39:42 +0800 Subject: [PATCH] 1.出库作业未判断小于零的作业(完成) 2.入出为历史添加库位号,托盘码显示(完成) 3.确认出为完成后,是否清空托盘码(完成) 4.库位主档托盘码未显示(完成) --- rsf-admin/src/page/components/DictSelect.jsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rsf-admin/src/page/components/DictSelect.jsx b/rsf-admin/src/page/components/DictSelect.jsx index 1ca14c5..77292f9 100644 --- a/rsf-admin/src/page/components/DictSelect.jsx +++ b/rsf-admin/src/page/components/DictSelect.jsx @@ -6,7 +6,7 @@ import { Select, MenuItem, FormControl, InputLabel } from '@mui/material'; const DictSelect = (props) => { - const { dictTypeCode, label, value, onChange, ...params } = props; + const { dictTypeCode, label, group, value, onChange, ...params } = props; const translate = useTranslate(); const notify = useNotify(); const [list, setList] = useState([]); @@ -16,7 +16,7 @@ }, [dictTypeCode]); const http = async () => { - const res = await request.post('/dictData/page', { dictTypeCode }); + const res = await request.post('/dictData/page', { dictTypeCode, group }); if (res?.data?.code === 200) { setList(res.data.data.records.map((item) => { return { -- Gitblit v1.9.1