|  |  | 
 |  |  |     ReferenceArrayInput, | 
 |  |  |     AutocompleteInput, | 
 |  |  |     DeleteButton, | 
 |  |  |     Button, | 
 |  |  |     useRecordSelection, | 
 |  |  |     useRefresh, | 
 |  |  | } from 'react-admin'; | 
 |  |  | import { Box, Typography, Card, Stack } from '@mui/material'; | 
 |  |  | import { styled } from '@mui/material/styles'; | 
 |  |  | 
 |  |  | import MyCreateButton from "../../components/MyCreateButton"; | 
 |  |  | import MyExportButton from '../../components/MyExportButton'; | 
 |  |  | import PageDrawer from "../../components/PageDrawer"; | 
 |  |  | import MyField from "../../components/MyField"; | 
 |  |  | import { PAGE_DRAWER_WIDTH, OPERATE_MODE, DEFAULT_PAGE_SIZE } from '@/config/setting'; | 
 |  |  | import * as Common from '@/utils/common'; | 
 |  |  |  | 
 |  |  | import request from '@/utils/request'; | 
 |  |  | import ConfirmButton from '../../components/ConfirmButton'; | 
 |  |  | import CachedIcon from '@mui/icons-material/Cached'; | 
 |  |  | const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({ | 
 |  |  |     '& .css-1vooibu-MuiSvgIcon-root': { | 
 |  |  |         height: '.9em' | 
 |  |  | 
 |  |  |     '& .column-name': { | 
 |  |  |     }, | 
 |  |  |     '& .opt': { | 
 |  |  |         width: 200 | 
 |  |  |         width: 150 | 
 |  |  |     }, | 
 |  |  | })); | 
 |  |  |  | 
 |  |  | 
 |  |  |                 actions={( | 
 |  |  |                     <TopToolbar> | 
 |  |  |                         <FilterButton /> | 
 |  |  |                         {/* <MyCreateButton onClick={() => { setCreateDialog(true) }} /> */} | 
 |  |  |                         <SelectColumnsButton preferenceKey='asnOrderLog' /> | 
 |  |  |                         <MyExportButton /> | 
 |  |  |                     </TopToolbar> | 
 |  |  | 
 |  |  |             > | 
 |  |  |                 <StyledDatagrid | 
 |  |  |                     preferenceKey='asnOrderLog' | 
 |  |  |                     bulkActionButtons={false} | 
 |  |  |                     bulkActionButtons={ | 
 |  |  |                         <> | 
 |  |  |                             <MyExportButton /> | 
 |  |  |                         </> | 
 |  |  |                     } | 
 |  |  |                     rowClick={'edit'} | 
 |  |  |                     expand={false} | 
 |  |  |                     expandSingle={true} | 
 |  |  | 
 |  |  |                     <DateField source="arrTime" label="table.field.asnOrderLog.arrTime" showTime /> | 
 |  |  |                     <TextField source="rleStatus$" label="table.field.asnOrderLog.rleStatus" sortable={false} /> | 
 |  |  |                     <TextField source="ntyStatus$" label="table.field.asnOrderLog.ntyStatus" sortable={false} /> | 
 |  |  |                     <TextField source="updateBy$" label="common.field.updateBy"  /> | 
 |  |  |                     <TextField source="updateBy$" label="common.field.updateBy" /> | 
 |  |  |                     <DateField source="updateTime" label="common.field.updateTime" showTime /> | 
 |  |  |                     <TextField source="createBy$" label="common.field.createBy"/> | 
 |  |  |                     <TextField source="createBy$" label="common.field.createBy" /> | 
 |  |  |                     <DateField source="createTime" label="common.field.createTime" showTime /> | 
 |  |  |                     <BooleanField source="statusBool" label="common.field.status" sortable={false} /> | 
 |  |  |                     <TextField source="memo" label="common.field.memo" sortable={false} /> | 
 |  |  |                     <WrapperField cellClassName="opt" label="common.field.opt"> | 
 |  |  |                         <ContinueButton /> | 
 |  |  |                     </WrapperField> | 
 |  |  |                 </StyledDatagrid> | 
 |  |  |             </List> | 
 |  |  |             <AsnOrderLogCreate | 
 |  |  | 
 |  |  | } | 
 |  |  |  | 
 |  |  | export default AsnOrderLogList; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | const ContinueButton = () => { | 
 |  |  |     const refresh = useRefresh(); | 
 |  |  |     const record = useRecordContext(); | 
 |  |  |     const notify = useNotify(); | 
 |  |  |     const continueReceipt = async () => { | 
 |  |  |       const { data: { code, data, msg } } = await request.post(`/asnOrderLog/continue/${record.id}`); | 
 |  |  |       if (code === 200) { | 
 |  |  |         notify(msg); | 
 |  |  |       } else { | 
 |  |  |         notify(msg); | 
 |  |  |       } | 
 |  |  |       refresh(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     return ( | 
 |  |  |       <ConfirmButton label={"toolbar.continue"}  startIcon={<CachedIcon />} onConfirm={continueReceipt} /> | 
 |  |  |     ) | 
 |  |  |   } |