index.tsx 35.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
import ButtonConfirm from '@/components/ButtomConfirm';
import { RESPONSE_CODE } from '@/constants/enum';
import {
  postServiceOrderOrderCancel,
  postServiceOrderQueryServiceOrder,
} from '@/services';
import { orderExport } from '@/services/order';
import { enumValueToLabel, formatDateTime } from '@/utils';
import {
  ClockCircleOutlined,
  CopyOutlined,
  DownOutlined,
  EllipsisOutlined,
} from '@ant-design/icons';
import {
  PageContainer,
  ProColumns,
  ProTable,
} from '@ant-design/pro-components';
import { history } from '@umijs/max';
import {
  Avatar,
  Button,
  Checkbox,
  Dropdown,
  Flex,
  MenuProps,
  Space,
  Tag,
  message,
} from 'antd';
import { cloneDeep } from 'lodash';
import { Key, useRef, useState } from 'react';
import OrderPrintModal from '../OrderPrint/OrderPrintModal';
import AttachmentModal from './components/AttachmentModal';
import CheckModal from './components/CheckModal';
import ConfirmReceiptModal from './components/ConfirmReceiptModal';
import DeliverModal from './components/DeliverModal';
import FinancialDrawer from './components/FinancialDrawer';
import HistoryModal from './components/HistoryModal';
import ImportModal from './components/ImportModal';
import OrderDrawer from './components/OrderDrawer';
import OrderNotesEditModal from './components/OrderNotesEditModal';
import SubOrderComfirmReceiptImagesModal from './components/SubOrderComfirmReceiptImagesModal';
import {
  INVOCING_STATUS_OPTIONS,
  MAIN_ORDER_COLUMNS,
  ORDER_STATUS_OPTIONS,
  PAYMENT_CHANNEL_OPTIONS,
  PAYMENT_METHOD_OPTIONS,
  PRODUCT_BELONG_DEPARTMENT_OPTIONS,
} from './constant';
import './index.less';
import { OrderListItemType, OrderType } from './type.d';

const OrderPage = () => {
  const [orderDrawerVisible, setOrderDrawerVisible] = useState<boolean>(false);
  const [checkVisible, setCheckVisible] = useState<boolean>(false);
  const [orderPrintVisible, setOrderPrintVisible] = useState<boolean>(false);
  const [
    subOrderConfirmReceiptImagesVisible,
    setSubOrderConfirmReceiptImagesVisible,
  ] = useState<boolean>(false);
  const [notesEditVisible, setNotesEditVisible] = useState<boolean>(false);
  const [attachmentModalVisible, setAttachmentModalVisible] =
    useState<boolean>(false);
  const [financialVisible, setFinancialVisible] = useState<boolean>(false);
  const [historyModalVisible, setHistoryModalVisible] =
    useState<boolean>(false);
  const [isRePrintOrder, setIsRePrintOrder] = useState<boolean>(false);
  const [isSendProduct, setIsSendProduct] = useState<boolean>(false);
  const [isMainOrder, setIsMainOrder] = useState<boolean>(false);
  const [importModalVisible, setImportModalVisible] = useState<boolean>(false);
  const [confirmReceiptVisible, setConfirmReceiptVisible] =
    useState<boolean>(false);
  const [deliverVisible, setDeliverVisible] = useState<boolean>(false);
  const [orderOptType, setOrderOptType] = useState<string>('');
  const [isFinalcialEdit, setIsFinalcialEdit] = useState<boolean>(false);
  const [expandedRowKeys, setExpandedRowKeys] = useState<Key[]>([]);
  const [orderRow, setOrderRow] = useState<Partial<OrderType>>({});
  const [mainOrderAllItemKeys, setMainOrderAllItemKeys] = useState([]);
  const [rolePath, setRolePath] = useState([]); //当前角色权限(新增跟打印按钮)
  const userInfo = JSON.parse(localStorage.getItem('userInfo'));
  // const [tableHeight, setTableHeight] = useState(200);
  const [selectedRows, setSelectedRows] = useState({});
  const [selectedRowObj, setSelectedRowObj] = useState({});
  const [selectedItems, setSelectedItems] = useState([]);
  const [selectedRowKeys, setSelectedRowKeys] = useState([]);
  const [pageSize, setPageSize] = useState(10);
  const [currentPage, setCurrentPage] = useState(1);
  const mainTableRef = useRef();
  const [messageApi, contextHolder] = message.useMessage();

  // const openCheckNotes = (checkNotes: string) => {
  //   Modal.info({
  //     title: '驳回备注',
  //     content: (
  //       <div>
  //         <p>{checkNotes}</p>
  //       </div>
  //     ),
  //     onOk() { },
  //   });
  // };

  const exportLoading = () => {
    messageApi.open({
      type: 'loading',
      content: '正在导出文件...',
      duration: 0,
    });
  };

  const exportLoadingDestory = () => {
    messageApi.destroy();
  };

  const refreshTable = () => {
    mainTableRef.current?.reload();
    //刷新表格数据的时候,取消选中行
    setSelectedRowObj([]);
    setSelectedRows([]);
    setSelectedRowKeys([]);
  };

  // const resize = () => {
  //   // 计算元素底部到视口顶部的距离
  //   let bottomDistance = document
  //     .getElementById('mainTable')
  //     ?.getElementsByClassName('ant-table-thead')[0]
  //     .getBoundingClientRect().bottom;
  //   // 获取屏幕高度
  //   let screenHeight =
  //     window.innerHeight || document.documentElement.clientHeight;

  //   // 计算元素底部到屏幕底部的距离
  //   let bottomToScreenBottomDistance = screenHeight - bottomDistance;

  //   // //底部分页元素的高度
  //   // var pH = screenHeight - document.getElementById("main-table").getElementsByClassName('ant-table-body')[0].getBoundingClientRect().bottom;

  //   setTableHeight(bottomToScreenBottomDistance - 88);
  // };

  // useEffect(() => {
  //   resize();
  //   // 添加事件监听器,当窗口大小改变时调用resize方法
  //   window.addEventListener('resize', resize);
  // });

  const onCheckboxChange = (itemKey: never) => {
    const newSelectedItems = selectedItems.includes(itemKey)
      ? selectedItems.filter((key) => key !== itemKey)
      : [...selectedItems, itemKey];

    setSelectedItems(newSelectedItems);
  };
  const handleTableExpand = (mainOrderIds: any) => {
    setExpandedRowKeys(mainOrderIds);
  };

  //表头渲染
  const OrderTableHeader = () => {
    return (
      <Flex className="w-full">
        <Flex className="w-[24%] ml-[5%]">商品信息</Flex>
        <Flex className="w-[15%]">交易金额</Flex>
        <Flex className="w-[10%]">支付</Flex>
        <Flex className="w-[13%]">其他</Flex>
        <Flex className="w-[10%]">交易状态</Flex>
        <Flex className="w-[23%]">操作</Flex>
      </Flex>
    );
  };
  //子订单内容渲染
  const SubOderRander = ({ record, optRecord }) => {
    return (
      <Flex className="w-full border-b-indigo-500">
        <Flex vertical className="w-[26%]" gap="small">
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {optRecord.productName}
          </div>
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {optRecord.parameters}
          </div>
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {optRecord.notes}
            <Button
              type="dashed"
              size="small"
              onClick={() => {
                setNotesEditVisible(true);
                setOrderRow(optRecord);
                setIsMainOrder(false);
              }}
            >
              详情
            </Button>
          </div>
        </Flex>
        <Flex className="w-[16%]" vertical gap="small">
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            单价:¥{optRecord.productPrice}
          </div>
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            数量:x{optRecord.quantity}
          </div>
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            合计:¥{optRecord.subOrderPayment}
          </div>
        </Flex>
        <Flex className="w-[10%]" vertical gap="small">
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {enumValueToLabel(optRecord.paymentMethod, PAYMENT_METHOD_OPTIONS)}
          </div>
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {enumValueToLabel(
              optRecord.paymentChannel,
              PAYMENT_CHANNEL_OPTIONS,
            )}
          </div>
        </Flex>
        <Flex className="w-[15%]" vertical gap="small">
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {enumValueToLabel(
              optRecord.productBelongBusiness,
              PRODUCT_BELONG_DEPARTMENT_OPTIONS,
            )}
          </div>
        </Flex>
        <Flex className="w-[10%]" vertical gap="small">
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {enumValueToLabel(
              optRecord.invoicingStatus,
              INVOCING_STATUS_OPTIONS,
            )}
          </div>
          <div className="whitespace-no-wrap overflow-hidden overflow-ellipsis">
            {enumValueToLabel(optRecord.orderStatus, ORDER_STATUS_OPTIONS)}
          </div>
        </Flex>
        <Flex className="w-[23%]" wrap="wrap" gap="small">
          {optRecord.subPath.includes('sendProduct') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                optRecord.mainOrderId = record.id;
                setSelectedRows([cloneDeep(optRecord)]); //克隆一份数据,避免后续修改污染
                setDeliverVisible(true);
                setIsSendProduct(true);
              }}
            >
              发货
            </Button>
          ) : (
            ''
          )}

          {optRecord.subPath.includes('queryAnnex') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                optRecord.mainOrderId = record.id;
                setAttachmentModalVisible(true);
                setOrderRow(optRecord);
              }}
            >
              附件
            </Button>
          ) : (
            ''
          )}

          {optRecord.subPath.includes('modifySendInformation') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                optRecord.mainOrderId = record.id;
                setSelectedRows([cloneDeep(optRecord)]); //克隆一份数据,避免后续修改污染
                setDeliverVisible(true);
                setIsSendProduct(false);
              }}
            >
              修改发货信息
            </Button>
          ) : (
            ''
          )}

          {optRecord.subPath.includes('printOrder') ? (
            <Button
              className="p-0"
              type="link"
              onClick={async () => {
                setOrderPrintVisible(true);
                setSelectedRows([optRecord]);
                setOrderRow(record);
              }}
            >
              打印
            </Button>
          ) : (
            ''
          )}
          {optRecord.subPath.includes('editOrder') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                setFinancialVisible(true);
                setOrderRow(record);
                setSelectedRows([optRecord]);
                setIsFinalcialEdit(true);
              }}
            >
              编辑
            </Button>
          ) : (
            ''
          )}
          {optRecord.subPath.includes('invoicing') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                setFinancialVisible(true);
                setIsFinalcialEdit(false);
                setOrderRow(record);
                setSelectedRows([optRecord]);
              }}
            >
              开票
            </Button>
          ) : (
            ''
          )}
          {optRecord.subPath.includes('checkOrder') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                setOrderRow(optRecord);
                setCheckVisible(true);
                setSelectedRows([optRecord]);
              }}
            >
              审核
            </Button>
          ) : (
            ''
          )}

          {optRecord.subPath.includes('rePrintOrder') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                setOrderPrintVisible(true);
                setSelectedRows([optRecord]);
                setOrderRow(record);
                setIsRePrintOrder(true);
              }}
            >
              重新打印
            </Button>
          ) : (
            ''
          )}

          {optRecord.subPath.includes('confirmReceipt') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                setConfirmReceiptVisible(true);
                setOrderRow(optRecord);
              }}
            >
              确认收货
            </Button>
          ) : (
            ''
          )}
          {optRecord.subPath.includes('viewImages') ? (
            <Button
              className="p-0"
              type="link"
              onClick={() => {
                setSubOrderConfirmReceiptImagesVisible(true);
                setOrderRow(optRecord);
              }}
            >
              查看收货凭证
            </Button>
          ) : (
            ''
          )}
        </Flex>
      </Flex>
    );
  };
  const expandedRowRender = (record) => {
    let subOrders = record.subOrderInformationLists;

    return (
      <ProTable
        id="sub-table"
        className=" w-full"
        showHeader={false}
        columns={[
          {
            title: 'ID',
            dataIndex: 'id',
            key: 'id',
            render: (text: any, optRecord: any) => {
              return <SubOderRander record={record} optRecord={optRecord} />;
            },
          },
        ]}
        rowSelection={{
          onChange: (selectedRowKeys: any, selectedRows: any) => {
            setSelectedRowKeys(selectedRowKeys);
            setSelectedRowObj({
              ...setSelectedRowObj,
              [record.id]: selectedRows,
            });
            selectedRowObj[record.id] = selectedRows;
            setSelectedRows(selectedRows);
          },
          selectedRowKeys: selectedRowKeys,
          // 自定义选择项参考: https://ant.design/components/table-cn/#components-table-demo-row-selection-custom
          // 注释该行则默认不显示下拉选项
          // selections: [Table.SELECTION_ALL, Table.SELECTION_INVERT],
          // defaultSelectedRowKeys: [],
        }}
        rowKey="id"
        headerTitle={false}
        search={false}
        options={false}
        dataSource={subOrders}
        pagination={false}
      />
    );
  };

  // 主订单内容渲染
  const MainOrderColumnRender = ({ record }: { record: OrderListItemType }) => {
    // const handleExpand = (key: number) => {
    //   const newExpandedRowKeys = expandedRowKeys.includes(key)
    //     ? expandedRowKeys.filter((k) => k !== key)
    //     : [...expandedRowKeys, key];

    //   setExpandedRowKeys(newExpandedRowKeys);
    // };
    return (
      <Flex vertical={true}>
        {/* 编号、时间、销售信息 */}
        <Flex
          className="px-4 py-4 bg-white bg-white rounded-t-lg"
          justify="space-between"
        >
          <Flex wrap="wrap" gap="middle" vertical>
            <Flex>
              <Flex>
                <Checkbox
                  onChange={() => onCheckboxChange(record.id)}
                  checked={selectedItems.includes(record.id)}
                >
                  <div>
                    订单号:{record.id}
                    {'    ' + formatDateTime(record.createTime)}
                  </div>
                </Checkbox>
                <div>代表:{record.salesCode}</div>
                <span>单位:{record.institution}</span>
                <span>联系人:{record.institutionContactName}</span>
              </Flex>
            </Flex>
            <Flex className="pl-6" align="center">
              <div>
                备注:
                <span className="ml-2">{record.notes}</span>
              </div>
              <Button
                className="p-0"
                type="link"
                onClick={() => {
                  setNotesEditVisible(true);
                  setOrderRow(record);
                  setIsMainOrder(true);
                }}
              >
                备注
              </Button>
            </Flex>
          </Flex>
          <Flex wrap="wrap" gap="middle" vertical>
            <Flex justify="flex-end">
              <Flex wrap="wrap" gap="middle" align="center">
                <div>
                  总金额:
                  <span className="text-lg">{record.totalPayment}¥</span>
                </div>
                {rolePath?.includes('addOrder') ? (
                  <CopyOutlined
                    className="hover:cursor-pointer"
                    onClick={() => {
                      setOrderOptType('copy');
                      setOrderDrawerVisible(true);
                      let copy = cloneDeep(record);
                      copy.id = undefined;
                      copy.subOrderInformationLists?.forEach((item) => {
                        item.id = undefined;
                      });
                      setOrderRow(copy);
                    }}
                  />
                ) : (
                  ''
                )}

                <ClockCircleOutlined
                  className="hover:cursor-pointer"
                  onClick={() => {
                    setHistoryModalVisible(true);
                    if (selectedRowObj[record.id]?.length) {
                      setSelectedRows(selectedRowObj[record.id]);
                    } else {
                      setSelectedRows(record.subOrderInformationLists);
                    }
                  }}
                />
              </Flex>
            </Flex>
            <Flex justify="flex-end">
              <Space.Compact direction="vertical" align="end">
                <Space>
                  {record.mainPath.includes('sendProduct') ? (
                    <Button
                      className="p-0"
                      type="link"
                      onClick={() => {
                        if (!selectedRowObj[record.id]?.length) {
                          return message.error('请选择选择子订单');
                        }
                        setSelectedRows(selectedRowObj[record.id]);
                        setDeliverVisible(true);
                        setIsSendProduct(true);
                      }}
                    >
                      发货
                    </Button>
                  ) : (
                    ''
                  )}
                  {record.mainPath.includes('printOrder') ? (
                    <Button
                      className="p-0"
                      type="link"
                      onClick={() => {
                        if (!selectedRowObj[record.id]?.length) {
                          return message.error('请选择选择子订单');
                        }
                        setSelectedRows(selectedRowObj[record.id]);
                        setOrderRow(record);
                        setOrderPrintVisible(true);
                      }}
                    >
                      打印
                    </Button>
                  ) : (
                    ''
                  )}
                  {record.mainPath.includes('rePrintOrder') ? (
                    <Button
                      className="p-0"
                      type="link"
                      onClick={() => {
                        if (!selectedRowObj[record.id]?.length) {
                          return message.error('请选择选择子订单');
                        }
                        setSelectedRows(selectedRowObj[record.id]);
                        setOrderRow(record);
                        setOrderPrintVisible(true);
                        setIsRePrintOrder(true);
                      }}
                    >
                      重新打印
                    </Button>
                  ) : (
                    ''
                  )}
                  {record.mainPath.includes('modifySendInformation') ? (
                    <Button
                      className="p-0"
                      type="link"
                      onClick={() => {
                        if (!selectedRowObj[record.id]?.length) {
                          return message.error(
                            '请选择已经发货或者已经确认收货的子订单',
                          );
                        }
                        for (let row of selectedRowObj[record.id]) {
                          if (
                            row.orderStatus !== 'CONFIRM_RECEIPT' &&
                            row.orderStatus !== 'SHIPPED'
                          ) {
                            return message.error(
                              '请选择已经发货或者已经确认收货的子订单',
                            );
                          }
                        }
                        setSelectedRows(selectedRowObj[record.id]);
                        setDeliverVisible(true);
                        setIsSendProduct(false);
                      }}
                    >
                      修改发货信息
                    </Button>
                  ) : (
                    ''
                  )}
                  {record.mainPath.includes('invoicing') ? (
                    <Button
                      type="link"
                      className="p-0"
                      onClick={() => {
                        let selectedSubOrders = selectedRowObj[record.id];
                        setSelectedRows(selectedSubOrders);
                        if (selectedSubOrders === undefined) {
                          setSelectedRows(record.subOrderInformationLists);
                        }
                        setOrderRow(record);
                        setFinancialVisible(true);
                      }}
                    >
                      开票
                    </Button>
                  ) : (
                    ''
                  )}
                  {record.mainPath.includes('updateOrder') ? (
                    <Button
                      className="p-0"
                      type="link"
                      onClick={() => {
                        //勾选的子订单:如果有勾选,后面只校验有勾选的
                        let selectedSubOrders = selectedRowObj[record.id];
                        if (
                          selectedSubOrders === undefined ||
                          selectedSubOrders.length === 0
                        ) {
                          selectedSubOrders = record.subOrderInformationLists;
                        }
                        for (
                          let index = 0;
                          index < selectedSubOrders.length;
                          index++
                        ) {
                          let orderStatus =
                            selectedSubOrders[index].orderStatus;
                          //是审核通过及之后的订单
                          if (
                            orderStatus !== 'UNAUDITED' &&
                            orderStatus !== 'AUDIT_FAILED'
                          ) {
                            message.error(
                              '请选择未审核或者审核失败的订单进行编辑',
                            );
                            return;
                          }
                        }
                        setOrderDrawerVisible(true);
                        setOrderRow(record);
                        setSelectedRows(selectedSubOrders);
                        setOrderOptType('edit');
                      }}
                    >
                      编辑
                    </Button>
                  ) : (
                    ''
                  )}

                  {record.mainPath.includes('checkOrder') ? (
                    <Button
                      className="p-0"
                      type="link"
                      onClick={() => {
                        let selectedSubOrders = selectedRowObj[record.id];
                        setSelectedRows(selectedSubOrders);
                        if (selectedSubOrders === undefined) {
                          setSelectedRows(record.subOrderInformationLists);
                          console.log(
                            'subOrderInformationLists:' +
                              record.subOrderInformationLists,
                          );
                        }
                        for (let i = 0; i < selectedRows.length; i++) {
                          if (
                            selectedRows[i].orderStatus !== 'UNAUDITED' &&
                            selectedRows[i].orderStatus !== 'AUDIT_FAILED'
                          ) {
                            message.error(
                              '请选择未审核或者审核失败的子订单进行审核',
                            );
                            return;
                          }
                        }
                        setOrderRow(record);
                        setCheckVisible(true);
                      }}
                    >
                      审核
                    </Button>
                  ) : (
                    ''
                  )}

                  {record.mainPath.includes('OrderCancel') ? (
                    <ButtonConfirm
                      className="p-0"
                      title="确认作废?"
                      text="作废"
                      onConfirm={async () => {
                        let body = { id: record.id };
                        const data = await postServiceOrderOrderCancel({
                          data: body,
                        });
                        if (data.result === RESPONSE_CODE.SUCCESS) {
                          message.success(data.message);
                          refreshTable();
                        }
                      }}
                    />
                  ) : (
                    ''
                  )}
                </Space>
              </Space.Compact>
            </Flex>
          </Flex>
        </Flex>

        <Flex className="p-0 py-[24px] pl-[23px] pr-[5px] bg-white rounded-b-lg">
          {expandedRowRender(record)}
        </Flex>
      </Flex>
    );
  };

  // 主订单列表
  const mainOrdersColumns: ProColumns<OrderType>[] = MAIN_ORDER_COLUMNS.map(
    (item) => {
      if (item.dataIndex === 'name') {
        return {
          ...item,
          title: <OrderTableHeader />,
          render: (text, record) => {
            return <MainOrderColumnRender record={record} />;
          },
        };
      }
      return item;
    },
  );

  function toolBarRender() {
    let toolBtns = [];

    //导出按钮配置
    const items: MenuProps['items'] = [
      {
        label: '导出已选中订单',
        key: '1',
        onClick: async () => {
          if (selectedItems.length === 0) {
            message.error('请选择订单');
            return;
          }
          let body = { flag: 30, ids: selectedItems };
          exportLoading();
          orderExport('/api/service/order/export', body, exportLoadingDestory);
        },
      },
      {
        label: '导出当前页订单',
        key: '2',
        onClick: async () => {
          if (mainOrderAllItemKeys.length === 0) {
            message.error('当前没有订单');
            return;
          }
          let body = { flag: 20, ids: mainOrderAllItemKeys };
          exportLoading();
          orderExport('/api/service/order/export', body, exportLoadingDestory);
        },
      },
      {
        label: '导出所有订单',
        key: '3',
        onClick: async () => {
          let body = { flag: 10, ids: [] };
          exportLoading();
          orderExport('/api/service/order/export', body, exportLoadingDestory);
        },
      },
      {
        label: '导出当天订单',
        key: '4',
        onClick: async () => {
          let body = { flag: 40, ids: [] };
          exportLoading();
          orderExport('/api/service/order/export', body, exportLoadingDestory);
        },
      },
    ];

    const menuProps = {
      items,
      onClick: () => {},
    };

    if (rolePath?.includes('addOrder')) {
      toolBtns.push(
        <Button
          type="primary"
          key="out"
          onClick={() => {
            setOrderDrawerVisible(true);
            setOrderOptType('add');
          }}
        >
          新增
        </Button>,
      );
    }
    if (rolePath?.includes('importExcel')) {
      toolBtns.push(
        <Button
          type="primary"
          key="out"
          onClick={() => {
            setImportModalVisible(true);
          }}
        >
          导入
        </Button>,
      );
    }

    toolBtns.push(
      <Dropdown menu={menuProps}>
        <Button>
          <Space>
            导出
            <DownOutlined />
          </Space>
        </Button>
      </Dropdown>,
    );

    // toolBtns.push(
    //   <Button
    //     key="show"
    //     onClick={() => {
    //       handleAllExpand();
    //     }}
    //   >
    //     {mainOrderAllItemKeys?.length !== expandedRowKeys.length
    //       ? '一键展开'
    //       : '一键收起'}
    //   </Button>,
    // );

    return toolBtns;
  }

  return (
    <PageContainer
      header={{
        title: '订单管理',
        extra: [
          <Avatar key="0" style={{ verticalAlign: 'middle' }} size="large">
            {userInfo?.username}
          </Avatar>,
          <Tag key="nickName">{userInfo?.nickName}</Tag>,
          <Dropdown
            key="dropdown"
            trigger={['click']}
            menu={{
              items: [
                {
                  label: '退出登录',
                  key: '1',
                  onClick: () => {
                    localStorage.removeItem('token');
                    history.push('/login');
                  },
                },
                // {
                //   label: '修改密码',
                //   key: '2',
                // },
              ],
            }}
          >
            <Button key="4" style={{ padding: '0 8px' }}>
              <EllipsisOutlined />
            </Button>
          </Dropdown>,
        ],
      }}
    >
      <div id="resizeDiv"></div>
      <ProTable
        id="main-table"
        // tableStyle={{backgroundColor:'red'}}

        actionRef={mainTableRef}
        expandIconColumnIndex={-1}
        columns={mainOrdersColumns}
        rowKey="id"
        pagination={{
          showQuickJumper: true,
          pageSize: pageSize,
          current: currentPage,
          showSizeChanger: true,
          onChange: (page, size) => {
            setPageSize(size);
            setCurrentPage(page);
          },
        }}
        // showHeader={false}
        expandedRowKeys={expandedRowKeys}
        // expandable={{ expandedRowRender }}
        dateFormatter="string"
        options={false}
        headerTitle="订单列表"
        search={{
          labelWidth: 'auto',
          // onCollapse: resize,
        }}
        request={async (
          // 第一个参数 params 查询表单和 params 参数的结合
          // 第一个参数中一定会有 pageSize 和  current ,这两个参数是 antd 的规范
          params,
          sorter,
          filter,
        ) => {
          const { data } = await postServiceOrderQueryServiceOrder({
            // ...params,
            // FIXME: remove @ts-ignore
            // @ts-ignore
            sorter,
            filter,
            data: params,
          });

          let mainOrderIds = data?.data?.map((d) => d.id);
          if (mainOrderAllItemKeys === undefined) {
            setMainOrderAllItemKeys([]);
          } else {
            setMainOrderAllItemKeys(mainOrderIds);
          }
          setRolePath(data.specialPath);
          handleTableExpand(mainOrderIds);
          return {
            data: data?.data || [],
            total: data?.total || 0,
          };
        }}
        toolBarRender={() => {
          return toolBarRender();
        }}
      />

      {orderDrawerVisible && (
        <OrderDrawer
          data={orderRow}
          subOrders={selectedRows}
          onClose={(isSuccess: boolean) => {
            setOrderDrawerVisible(false);
            setOrderRow({});
            if (isSuccess) {
              refreshTable();
            }
          }}
          orderOptType={orderOptType}
        />
      )}

      {checkVisible && (
        <CheckModal
          setCheckVisible={setCheckVisible}
          data={orderRow}
          subOrders={selectedRows}
          onClose={() => {
            setCheckVisible(false);
            setOrderRow({});
            setSelectedRows({});
            refreshTable();
          }}
        />
      )}

      {notesEditVisible && (
        <OrderNotesEditModal
          setNotesEditVisible={setNotesEditVisible}
          data={orderRow}
          isMianOrder={isMainOrder}
          onClose={() => {
            setNotesEditVisible(false);
            setOrderRow({});
            refreshTable();
          }}
        />
      )}

      {deliverVisible && (
        <DeliverModal
          data={selectedRows}
          isSendProduct={isSendProduct}
          onClose={() => {
            setDeliverVisible(false);
            setOrderRow({});
            setIsSendProduct(false);
            refreshTable();
          }}
        />
      )}

      {financialVisible && (
        <FinancialDrawer
          isEdit={isFinalcialEdit}
          mainOrder={orderRow}
          subOrders={selectedRows}
          onClose={() => {
            setFinancialVisible(false);
            setOrderRow({});
            refreshTable();
          }}
        />
      )}

      {orderPrintVisible && (
        <OrderPrintModal
          mainOrder={orderRow}
          subOrders={selectedRows}
          isRePrint={isRePrintOrder}
          onClose={() => {
            setOrderPrintVisible(false);
            setOrderRow({});
            setIsRePrintOrder(false);
            refreshTable();
          }}
        />
      )}

      {confirmReceiptVisible && (
        <ConfirmReceiptModal
          data={orderRow}
          onClose={() => {
            setConfirmReceiptVisible(false);
            setOrderRow({});
            refreshTable();
          }}
        />
      )}

      {subOrderConfirmReceiptImagesVisible && (
        <SubOrderComfirmReceiptImagesModal
          setVisible={setSubOrderConfirmReceiptImagesVisible}
          onClose={() => {
            setSubOrderConfirmReceiptImagesVisible(false);
          }}
          orderRow={orderRow}
        />
      )}

      {importModalVisible && (
        <ImportModal
          onClose={() => {
            setImportModalVisible(false);
            refreshTable();
          }}
        />
      )}

      {attachmentModalVisible && (
        <AttachmentModal
          data={orderRow}
          onClose={() => {
            setAttachmentModalVisible(false);
            setOrderRow({});
          }}
        />
      )}

      {historyModalVisible && (
        <HistoryModal
          subOrders={selectedRows}
          onClose={() => {
            setHistoryModalVisible(false);
            setSelectedRows({});
          }}
        />
      )}

      {contextHolder}
    </PageContainer>
  );
};

export default OrderPage;