|  |  | 
 |  |  | import DictionarySelect from "../../components/DictionarySelect"; | 
 |  |  | import ExitToAppIcon from '@mui/icons-material/ExitToApp'; | 
 |  |  | import ImportButton from "../../components/ImportButton"; | 
 |  |  | import PrintOutlinedIcon from '@mui/icons-material/PrintOutlined'; | 
 |  |  | import OrderPrintPreview from "./OrderPrintPreview"; | 
 |  |  |  | 
 |  |  | const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({ | 
 |  |  |   '& .css-1vooibu-MuiSvgIcon-root': { | 
 |  |  | 
 |  |  |   const [createDialog, setCreateDialog] = useState(false); | 
 |  |  |   const [drawerVal, setDrawerVal] = useState(false); | 
 |  |  |   const [modalType, setmodalType] = useState(0); | 
 |  |  |   const [select, setSelect] = useState(0); | 
 |  |  |   const [printOrder, setPrintOrder] = useState(false); | 
 |  |  |   const [select, setSelect] = useState({}); | 
 |  |  |   const invoiceRef = useRef(); | 
 |  |  |   const billReload = useRef(); | 
 |  |  |   const notify = useNotify(); | 
 |  |  |   const refresh = useRefresh(); | 
 |  |  |   const dicts = JSON.parse(localStorage.getItem('sys_dicts'))?.filter(dict => (dict.dictTypeCode == 'sys_business_type')) || []; | 
 |  |  |   return ( | 
 |  |  |     <Box display="flex"> | 
 |  |  | 
 |  |  |           marginRight: drawerVal ? `${PAGE_DRAWER_WIDTH}px` : 0, | 
 |  |  |         }} | 
 |  |  |         title={"menu.asnOrder"} | 
 |  |  |         empty={<EmptyData onClick={() => { setCreateDialog(true); setmodalType(0) }} />} | 
 |  |  |         empty={false} | 
 |  |  |         filters={filters} | 
 |  |  |         filter={{deleted: 0}} | 
 |  |  |         sort={{ field: "create_time", order: "desc" }} | 
 |  |  |         actions={( | 
 |  |  |           <TopToolbar> | 
 |  |  |             <FilterButton /> | 
 |  |  |             <MyCreateButton onClick={() => { setCreateDialog(true); setmodalType(0) }} /> | 
 |  |  |             <SelectColumnsButton preferenceKey='asnOrder' /> | 
 |  |  |             <ImportButton value={'asnOrderItem'}  /> | 
 |  |  |             <ImportButton value={'asnOrderItem'} /> | 
 |  |  |             <MyExportButton /> | 
 |  |  |           </TopToolbar> | 
 |  |  |         )} | 
 |  |  | 
 |  |  |           <TextField cellClassName="wkType" source="wkType$" label="table.field.asnOrder.wkType" /> | 
 |  |  |           <NumberField source="anfme" label="table.field.asnOrder.anfme" /> | 
 |  |  |           <NumberField source="qty" label="table.field.asnOrder.qty" /> | 
 |  |  |           <TextField source="logisNo" label="table.field.asnOrder.logisNo" /> | 
 |  |  |           {/* <TextField source="logisNo" label="table.field.asnOrder.logisNo" /> */} | 
 |  |  |           <DateField source="arrTime" label="table.field.asnOrder.arrTime" showTime /> | 
 |  |  |           <TextField source="rleStatus$" label="table.field.asnOrder.rleStatus" sortable={false} /> | 
 |  |  |           <TextField source="ntyStatus$" label="table.field.asnOrder.ntyStatus" /> | 
 |  |  | 
 |  |  |             <MyButton setCreateDialog={setCreateDialog} setmodalType={setmodalType} /> | 
 |  |  |             <InspectionButton /> | 
 |  |  |             <CompleteButton /> | 
 |  |  |             <CloseButton /> | 
 |  |  |             <ODeleteButton  /> | 
 |  |  |             <PrintButton setPrintOrder={setPrintOrder} setSelect={setSelect}/> | 
 |  |  |             {/* <CloseButton /> */} | 
 |  |  |           </WrapperField> | 
 |  |  |         </StyledDatagrid> | 
 |  |  |       </List> | 
 |  |  | 
 |  |  |         setOpen={setCreateDialog} | 
 |  |  |         asnId={modalType} | 
 |  |  |         billReload={billReload} | 
 |  |  |       /> | 
 |  |  |       <OrderPrintPreview  | 
 |  |  |         open={printOrder} | 
 |  |  |         setOpen={setPrintOrder} | 
 |  |  |         record={select} | 
 |  |  |       /> | 
 |  |  |       <PageDrawer | 
 |  |  |         title='AsnOrder Detail' | 
 |  |  | 
 |  |  | } | 
 |  |  | export default AsnOrderList; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | //打印按钮 | 
 |  |  | const PrintButton = ({setPrintOrder, setSelect}) => { | 
 |  |  |   const record = useRecordContext(); | 
 |  |  |   const printOrder = (event) => { | 
 |  |  |     event.stopPropagation(); | 
 |  |  |     setPrintOrder(true) | 
 |  |  |     setSelect(record) | 
 |  |  |   } | 
 |  |  |  | 
 |  |  |   return ( | 
 |  |  |       <Button label={"toolbar.print"} onClick={printOrder}> | 
 |  |  |           <PrintOutlinedIcon /> | 
 |  |  |       </Button> | 
 |  |  |   ) | 
 |  |  | } | 
 |  |  |  | 
 |  |  |  | 
 |  |  | const ODeleteButton = () => { | 
 |  |  |   const record = useRecordContext(); | 
 |  |  |   return ( | 
 |  |  |     record.exceStatus === 0 ? <DeleteButton  mutationMode="pessimistic"/> : <></> | 
 |  |  |   ) | 
 |  |  |  | 
 |  |  | } | 
 |  |  |  | 
 |  |  | const MyButton = ({ setCreateDialog, setmodalType }) => { | 
 |  |  |   const record = useRecordContext(); | 
 |  |  |   const handleEditClick = (btn) => { | 
 |  |  | 
 |  |  |  | 
 |  |  |   }; | 
 |  |  |   return ( | 
 |  |  |     record.exceStatus === 1 || record.exceStatus === 0 ? | 
 |  |  |     <Button | 
 |  |  |       color="primary" | 
 |  |  |       startIcon={<EditIcon />} | 
 |  |  | 
 |  |  |       label={'ra.action.edit'} | 
 |  |  |     > | 
 |  |  |     </Button> | 
 |  |  |     : <></> | 
 |  |  |   ) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | //报检 | 
 |  |  | const InspectionButton = () => { | 
 |  |  |   const record = useRecordContext(); | 
 |  |  |   const notify = useNotify(); | 
 |  |  | 
 |  |  |     } | 
 |  |  |   } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |   return ( | 
 |  |  |     <Button onClick={inspection} label={"toolbar.inspection"}> | 
 |  |  |       <ConstructionIcon /> | 
 |  |  |     </Button> | 
 |  |  |       <ConfirmButton label={"toolbar.inspection"} color="secondary" startIcon={<ConstructionIcon />} onConfirm={inspection} /> | 
 |  |  |   ) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | 
 |  |  |   const { selectedIds, onUnselectItems, data } = useListContext(); | 
 |  |  |   const notify = useNotify(); | 
 |  |  |   const refresh = useRefresh(); | 
 |  |  |   const translate = useTranslate(); | 
 |  |  |   const inspection = (btn) => { | 
 |  |  |     btn.stopPropagation(); | 
 |  |  |     if (selectedIds.length === 0) { | 
 |  |  |       notify('请选择通知单'); | 
 |  |  |       notify(translate("request.error.select_error_order")); | 
 |  |  |       return; | 
 |  |  |     } else { | 
 |  |  |       const rows = data.filter((item) => selectedIds.includes(item.id)) | 
 |  |  | 
 |  |  |   ) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | //完成单据 | 
 |  |  | const CompleteButton = () => { | 
 |  |  |   const record = useRecordContext(); | 
 |  |  |   const notify = useNotify(); | 
 |  |  | 
 |  |  |   } | 
 |  |  |  | 
 |  |  |   return ( | 
 |  |  |     record.exceStatus === 1 && (record.anfme === record.qty ? <Button onClick={requestComplete} label={"toolbar.complete"} color="success"> | 
 |  |  |       <TaskIcon /> | 
 |  |  |     </Button> : <ConfirmButton label={"toolbar.complete"} color="success" data={'当前收货数量小于计划数量,是否确认完成'} startIcon={<TaskIcon />} onConfirm={requestComplete} />) | 
 |  |  |  | 
 |  |  |     // record.exceStatus === 1 && (record.anfme === record.qty ? <Button onClick={requestComplete} label={"toolbar.complete"} color="secondary"> | 
 |  |  |     //   <TaskIcon /> | 
 |  |  |     // </Button> : ) | 
 |  |  |     record.exceStatus === 1 ? <ConfirmButton label={"toolbar.complete"} color="secondary"  startIcon={<TaskIcon />} onConfirm={requestComplete} /> : <></> | 
 |  |  |   ) | 
 |  |  |  | 
 |  |  |  | 
 |  |  | 
 |  |  |   } | 
 |  |  |  | 
 |  |  |   return ( | 
 |  |  |     <ConfirmButton label={"toolbar.close"} color="error" data={'确认是否关闭?'} startIcon={<CloseIcon />} onConfirm={requestClose} /> | 
 |  |  |     <ConfirmButton label={"toolbar.close"} color="error"  startIcon={<CloseIcon />} onConfirm={requestClose} /> | 
 |  |  |   ) | 
 |  |  | } |