From 83207d8367cf5cdce0aedb5cf92b007ff9c7f7cd Mon Sep 17 00:00:00 2001
From: zjj <3272660260@qq.com>
Date: 星期五, 18 四月 2025 13:28:38 +0800
Subject: [PATCH] #收货历史单明细导出问题修复

---
 rsf-admin/src/page/basicInfo/loc/LocList.jsx |   23 ++++++++---------------
 1 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/rsf-admin/src/page/basicInfo/loc/LocList.jsx b/rsf-admin/src/page/basicInfo/loc/LocList.jsx
index b425f38..a319484 100644
--- a/rsf-admin/src/page/basicInfo/loc/LocList.jsx
+++ b/rsf-admin/src/page/basicInfo/loc/LocList.jsx
@@ -87,7 +87,6 @@
 
 const filters = [
     <SearchInput source="condition" alwaysOn />,
-
     <ReferenceInput
         source="warehouseId"
         label="table.field.loc.warehouseId"
@@ -173,7 +172,6 @@
                                 onClick={() => { setCreateDialog(true) }}>
                                 {translate('create.empty.button')}
                             </Button>
-
                             <Button
                                 variant="contained"
                                 color="primary"
@@ -240,17 +238,12 @@
                     <NumberField source="flagLabelMange" label="table.field.loc.flagLabelMange" />
                     <TextField source="locAttrs" label="table.field.loc.locAttrs" /> */}
                     <TextField source="useStatus$" label="table.field.loc.useStatus" />
-                    <ReferenceField source="updateBy" label="common.field.updateBy" reference="user" link={false} sortable={false}>
-                        <TextField source="nickname" />
-                    </ReferenceField>
+                    <TextField source="updateBy$" label="common.field.updateBy"  />
                     <DateField source="updateTime" label="common.field.updateTime" showTime align="left" />
-                    <ReferenceField source="createBy" label="common.field.createBy" align="left" reference="user" link={false} sortable={false}>
-                        <TextField source="nickname" />
-                    </ReferenceField>
+                    <TextField source="createBy$" label="common.field.createBy"  />
                     <DateField source="createTime" label="common.field.createTime" showTime align="left" />
                     <BooleanField source="statusBool" label="common.field.status" sortable={false} align="left" />
                     <TextField source="memo" label="common.field.memo" sortable={false} />
-
                     <WrapperField cellClassName="opt" label="common.field.opt">
                         <EditButton sx={{ padding: '1px', fontSize: '.75rem' }} />
                         {/* <DeleteButton sx={{ padding: '1px', fontSize: '.75rem' }} mutationMode={OPERATE_MODE} /> */}
@@ -258,6 +251,10 @@
                     </WrapperField>
 
                 </StyledDatagrid>
+                <InitModal
+                open={initDialog}
+                setOpen={setInitDialog}
+                />
             </List>
             <LocCreate
                 open={createDialog}
@@ -269,11 +266,8 @@
                 setDrawerVal={setDrawerVal}
             >
             </PageDrawer>
-
-            <InitModal
-                open={initDialog}
-                setOpen={setInitDialog}
-            />
+            
+            
         </Box>
     )
 }
@@ -310,7 +304,6 @@
     const record = useRecordContext();
     const notify = useNotify();
     const refresh = useRefresh();
-
 
     const [createDialog, setCreateDialog] = useState(false);
 

--
Gitblit v1.9.1