|  |  | 
 |  |  |     SelectColumnsButton, | 
 |  |  |     EditButton, | 
 |  |  |     FilterButton, | 
 |  |  |     CreateButton, | 
 |  |  |     ExportButton, | 
 |  |  |     BulkDeleteButton, | 
 |  |  |     WrapperField, | 
 |  |  |     useRecordContext, | 
 |  |  |     useTranslate, | 
 |  |  |     useNotify, | 
 |  |  |     useListContext, | 
 |  |  |     FunctionField, | 
 |  |  |     TextField, | 
 |  |  |     NumberField, | 
 |  |  |     DateField, | 
 |  |  |     BooleanField, | 
 |  |  |     ReferenceField, | 
 |  |  |     TextInput, | 
 |  |  |     DateTimeInput, | 
 |  |  |     DateInput, | 
 |  |  |     SelectInput, | 
 |  |  |     NumberInput, | 
 |  |  |     ReferenceInput, | 
 |  |  |     ReferenceArrayInput, | 
 |  |  |     AutocompleteInput, | 
 |  |  |     DeleteButton, | 
 |  |  |     useRefresh, | 
 |  |  |     useRedirect, | 
 |  |  |     Button, | 
 |  |  | } from 'react-admin'; | 
 |  |  | import { Box, Typography, Card, Stack } from '@mui/material'; | 
 |  |  | import { styled } from '@mui/material/styles'; | 
 |  |  | import WaveCreate from "./WaveCreate"; | 
 |  |  | import WavePanel from "./WavePanel"; | 
 |  |  | import EmptyData from "../../components/EmptyData"; | 
 |  |  | import MyCreateButton from "../../components/MyCreateButton"; | 
 |  |  | import MyExportButton from '../../components/MyExportButton'; | 
 |  |  | import PageDrawer from "../../components/PageDrawer"; | 
 |  |  | import MyField from "../../components/MyField"; | 
 |  |  | import request from '@/utils/request'; | 
 |  |  | import { PAGE_DRAWER_WIDTH, OPERATE_MODE, DEFAULT_PAGE_SIZE } from '@/config/setting'; | 
 |  |  | import * as Common from '@/utils/common'; | 
 |  |  | import PlayArrowOutlinedIcon from '@mui/icons-material/PlayArrowOutlined'; | 
 |  |  | import PauseCircleOutlineIcon from '@mui/icons-material/PauseCircleOutline'; | 
 |  |  | import { Box, Typography, Card, Stack } from '@mui/material'; | 
 |  |  | import ConfirmButton from "../../components/ConfirmButton"; | 
 |  |  | import PageDrawer from "../../components/PageDrawer"; | 
 |  |  | import PublicIcon from '@mui/icons-material/Public'; | 
 |  |  | import ItemToTaskModal from "./ItemToTaskModal"; | 
 |  |  | import ConfirmButton from "../../components/ConfirmButton"; | 
 |  |  | import { styled } from '@mui/material/styles'; | 
 |  |  | import request from '@/utils/request'; | 
 |  |  | import WaveCreate from "./WaveCreate"; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({ | 
 |  |  | 
 |  |  |                 sort={{ field: "create_time", order: "desc" }} | 
 |  |  |                 actions={( | 
 |  |  |                     <TopToolbar> | 
 |  |  |                         <BulkStartButton /> | 
 |  |  |                         <BulkPauseButton /> | 
 |  |  |                         <FilterButton /> | 
 |  |  |                         <SelectColumnsButton preferenceKey='wave' /> | 
 |  |  |                     </TopToolbar> | 
 |  |  | 
 |  |  |                     <TextField source="type$" label="table.field.wave.type" sortable={false} /> | 
 |  |  |                     <TextField source="exceStatus$" label="table.field.wave.exceStatus" sortable={false} /> | 
 |  |  |                     <NumberField source="anfme" label="table.field.wave.anfme" /> | 
 |  |  |                     <NumberField source="groupQty" label="table.field.wave.groupQty" /> | 
 |  |  |                     <NumberField source="qty" label="table.field.wave.qty" /> | 
 |  |  |                     <NumberField source="orderNum" label="table.field.wave.orderNum" /> | 
 |  |  |                     <TextField source="updateBy$" label="common.field.updateBy" /> | 
 |  |  | 
 |  |  |                     <TextField source="memo" label="common.field.memo" sortable={false} /> | 
 |  |  |                     <WrapperField cellClassName="opt" label="common.field.opt"> | 
 |  |  |                         <PublicTaskButton setSelectIds={setSelectIds} setDetailDialog={setDetailDialog} /> | 
 |  |  |                         <EditButton sx={{ padding: '1px', fontSize: '.75rem' }} /> | 
 |  |  |                         <DeleteButton sx={{ padding: '1px', fontSize: '.75rem' }} mutationMode={OPERATE_MODE} /> | 
 |  |  |                         <EditButton label="toolbar.detail" sx={{ padding: '1px', fontSize: '.75rem' }} /> | 
 |  |  |                     </WrapperField> | 
 |  |  |                 </StyledDatagrid> | 
 |  |  |             </List> | 
 |  |  | 
 |  |  |     const notify = useNotify(); | 
 |  |  |     const refresh = useRefresh(); | 
 |  |  |     const redirect = useRedirect(); | 
 |  |  |  | 
 |  |  |     const pubClick = async (event) => { | 
 |  |  |         setSelectIds(record); | 
 |  |  |         setDetailDialog(true); | 
 |  |  |     } | 
 |  |  |     return ( | 
 |  |  |         <ConfirmButton label={"toolbar.createTask"} startIcon={<PublicIcon />} onConfirm={pubClick} /> | 
 |  |  |         record?.exceStatus == 0 ? <ConfirmButton label={"toolbar.createTask"} startIcon={<PublicIcon />} onConfirm={pubClick} size='small' /> : <></> | 
 |  |  |     ); | 
 |  |  | } | 
 |  |  |  | 
 |  |  | const BulkStartButton = () => { | 
 |  |  |     const { data, selectedIds, onUnselectItems } = useListContext(); | 
 |  |  |  | 
 |  |  |     const startClick = () => { | 
 |  |  |         onUnselectItems() | 
 |  |  |     } | 
 |  |  |     return ( | 
 |  |  |         <Button label="toolbar.start" onClick={startClick} startIcon={<PlayArrowOutlinedIcon />}  /> | 
 |  |  |     ) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | const BulkPauseButton = () => { | 
 |  |  |     const { data, selectedIds, onUnselectItems } = useListContext(); | 
 |  |  |  | 
 |  |  |     const pauseClick = () => { | 
 |  |  |         onUnselectItems() | 
 |  |  |     } | 
 |  |  |     return ( | 
 |  |  |         <Button label="toolbar.pause" onClick={pauseClick} startIcon={<PauseCircleOutlineIcon />}  /> | 
 |  |  |     ) | 
 |  |  | } |