From b5e8045d5f5b5401b696db12f62fdbcc86dc5c5d Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期四, 10 四月 2025 11:40:02 +0800 Subject: [PATCH] Merge branch 'devlop' of http://47.97.1.152:5880/r/wms-master into devlop --- rsf-admin/src/page/qlyInspect/QlyInspectList.jsx | 60 +++++++++++++++++++++++++++++++++--------------------------- 1 files changed, 33 insertions(+), 27 deletions(-) diff --git a/rsf-admin/src/page/qlyInspect/QlyInspectList.jsx b/rsf-admin/src/page/qlyInspect/QlyInspectList.jsx index 124d53c..46b4912 100644 --- a/rsf-admin/src/page/qlyInspect/QlyInspectList.jsx +++ b/rsf-admin/src/page/qlyInspect/QlyInspectList.jsx @@ -51,6 +51,7 @@ import AddIcon from '@mui/icons-material/Add'; import request from '@/utils/request'; import AsnSelModal from "./AsnSelModal"; +import InspectModal from "./InspectModal"; const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({ '& .css-1vooibu-MuiSvgIcon-root': { @@ -106,7 +107,13 @@ marginRight: drawerVal ? `${PAGE_DRAWER_WIDTH}px` : 0, }} title={"menu.qlyInspect"} - empty={<EmptyData onClick={() => { setCreateDialog(true) }} />} + empty={<EmptyData + children={ + <Box sx={{ gap: 2, display: 'flex' }}> + <AsnCreatButton isInit={true} /> + </Box> + } + onClick={() => { }} />} filters={filters} sort={{ field: "create_time", order: "desc" }} actions={( @@ -128,11 +135,11 @@ omit={['id', 'createTime', 'createBy', 'memo', 'asnId', 'statusBool']} > <NumberField source="id" /> - <NumberField source="asnId" label="table.field.qlyInspect.asnId" /> - <NumberField source="asnCode" label="table.field.qlyInspect.asnCode" /> <TextField source="code" label="table.field.qlyInspect.code" /> <TextField source="isptStatus$" label="table.field.qlyInspect.isptStatus" /> - <TextField source="wkType" label="table.field.qlyInspect.wkType" /> + <TextField source="wkType$" label="table.field.qlyInspect.wkType" /> + <NumberField source="asnId" label="table.field.qlyInspect.asnId" /> + <NumberField source="asnCode" label="table.field.qlyInspect.asnCode" /> <NumberField source="safeQty" label="table.field.qlyInspect.safeQty" /> <NumberField source="dlyQty" label="table.field.qlyInspect.dlyQty" /> <NumberField source="rcptQty" label="table.field.qlyInspect.rcptQty" /> @@ -178,26 +185,21 @@ const record = useRecordContext(); const notify = useNotify(); const refresh = useRefresh(); - const inspection = () => { - // requestInspect([record]) - }; - - // const requestInspect = async (rows) => { - // const { data: { code, data, msg } } = await request.post(`/asnOrder/inspect`, rows); - - // if (code === 200) { - // notify(msg); - // refresh() - // } else { - // notify(msg); - // } - // } + const [createDialog, setCreateDialog] = useState(false); return ( - <Button onClick={inspection} label={"toolbar.quality"}> - <ConstructionIcon /> - </Button> + <> + <Button onClick={() => setCreateDialog(true)} label={"toolbar.quality"}> + <ConstructionIcon /> + </Button> + + <InspectModal + open={createDialog} + setOpen={setCreateDialog} + ispectId={record.id} + /> + </> ) } @@ -248,19 +250,23 @@ ) } -const AsnCreatButton = () => { +const AsnCreatButton = ({ isInit }) => { const record = useRecordContext(); const notify = useNotify(); const refresh = useRefresh(); const [createDialog, setCreateDialog] = useState(false); - - return ( <> - <Button onClick={() => setCreateDialog(true)} label={"toolbar.asnCreate"}> - <AddIcon /> - </Button> + { + isInit ? <Button onClick={() => setCreateDialog(true)} label={"toolbar.asnCreate"} variant="contained" + color="primary"> + <AddIcon /> + </Button> : <Button onClick={() => setCreateDialog(true)} label={"toolbar.asnCreate"} > + <AddIcon /> + </Button> + } + <AsnSelModal open={createDialog} -- Gitblit v1.9.1