rsf-admin/src/page/orders/asnOrder/AsnOrderList.jsx
@@ -113,12 +113,7 @@
  const billReload = useRef();
  const location = useLocation();
  const redirect = useRedirect();
  const navigate = useNavigate();
  const dicts = JSON.parse(localStorage.getItem('sys_dicts'))?.filter(dict => (dict.dictTypeCode == 'sys_business_type')) || [];
  const assign = (record) => {
    navigate(`/asnOrderItem?asnId=${record.id}`);
  };
  return (
    <Box display="flex">
      <List
@@ -148,10 +143,7 @@
          sx={{ width: '100%' }}
          preferenceKey='asnOrder'
          bulkActionButtons={<> <InspectionsButton /><BulkDeleteButton mutationMode={OPERATE_MODE} /></>}
          rowClick='toggleSelection'
          onToggleItem={(id, resource, record)=>{
            redirect(location.pathname + '/' + id)
          }}
          rowClick='edit'
          expandSingle={true}
          omit={['id', 'createTime', 'createBy', 'memo', 'poId', 'rleStatus$']}
        >
@@ -229,7 +221,6 @@
  const requestInspect = async (rows) => {
    const { data: { code, data, msg } } = await request.post(`/asnOrder/inspect`, rows);
    if (code === 200) {
      notify(msg);
      refresh()