index.tsx
19.4 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
import ButtonConfirm from '@/components/ButtomConfirm';
import { RESPONSE_CODE } from '@/constants/enum';
import {
postServiceOrderExport,
postServiceOrderOrderCancel,
postServiceOrderPrintOrder,
postServiceOrderQueryServiceOrder,
} from '@/services';
import { orderExport } from '@/services/order';
import { enumValueToLabel } from '@/utils';
import { DownOutlined } from '@ant-design/icons';
import {
PageContainer,
ProColumns,
ProTable,
} from '@ant-design/pro-components';
import {
Button,
Checkbox,
Divider,
Dropdown,
Flex,
MenuProps,
Space,
Tag,
message,
} from 'antd';
import { cloneDeep } from 'lodash';
import { Key, useRef, useState } from 'react';
import CheckModal from './components/CheckModal';
import DeliverModal from './components/DeliverModal';
import OrderDrawer from './components/OrderDrawer';
import {
INVOCING_STATUS_OPTIONS,
LOGISTICS_STATUS_OPTIONS,
MAIN_ORDER_COLUMNS,
ORDER_STATUS_OPTIONS,
PAYMENT_CHANNEL_OPTIONS,
PAYMENT_METHOD_OPTIONS,
SUB_ORDER_COLUMNS,
} 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 [deliverVisible, setDeliverVisible] = useState<boolean>(false);
const [expandedRowKeys, setExpandedRowKeys] = useState<Key[]>([]);
const [orderRow, setOrderRow] = useState<Partial<OrderType>>({});
const [mainOrderAllItemKeys, setMainOrderAllItemKeys] = useState([]);
const [rolePath, setRolePath] = useState([]); //当前角色权限(新增跟打印按钮)
const [selectedRows, setSelectedRows] = useState({});
const [selectedRowObj, setSelectedRowObj] = useState({});
const [selectedItems, setSelectedItems] = useState([]);
const mainTableRef = useRef();
const onCheckboxChange = (itemKey: never) => {
const newSelectedItems = selectedItems.includes(itemKey)
? selectedItems.filter((key) => key !== itemKey)
: [...selectedItems, itemKey];
setSelectedItems(newSelectedItems);
};
const handleAllExpand = () => {
if (expandedRowKeys.length === mainOrderAllItemKeys.length) {
setExpandedRowKeys([]);
return;
}
setExpandedRowKeys(mainOrderAllItemKeys);
};
// 主订单内容渲染
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 justify="space-between" className="px-2 py-4 bg-gray-100">
<Checkbox
onChange={() => onCheckboxChange(record.id)}
checked={selectedItems.includes(record.id)}
>
<Flex wrap="wrap" gap="middle">
<div>{record.createTime}</div>
<div>订单编号:{record.id}</div>
</Flex>
</Checkbox>
</Flex>
{/* 收货、开票、备注信息 */}
<Flex justify="space-between" className="px-2 py-4">
<Space split={<Divider type="vertical" align="center" />}>
<Space.Compact direction="vertical" className="gap-2">
<div>
收货信息:
<Space
split={<span className="text-blue-300">|</span>}
className="ml-2"
>
<span>收货人:{record.customerName}</span>
<span>
联系方式:
{record.customerContactNumber}
</span>
<span>
单位联系人:
{record.institutionContactName}
</span>
<span>单位名称:{record.institution}</span>
<span> 收货地址:{record.customerShippingAddress}</span>
</Space>
</div>
<div>
开票信息:
<Space
split={<span className="text-blue-300">|</span>}
className="ml-2"
>
<span>开户银行:{record.bank}</span>
<span>
银行账号:
{record.bankAccountNumber}
</span>
<span>
识别号:
{record.invoiceIdentificationNumber}
</span>
</Space>
</div>
<div>
备 注:
<span className="ml-2">{record.notes}</span>
</div>
</Space.Compact>
</Space>
{/* 总金额、操作按钮信息 */}
<Space>
<Space.Compact direction="vertical" align="end">
<div>
总金额:<span className="text-lg">{record.totalPayment}¥</span>
</div>
<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);
}}
>
发货
</Button>
) : (
''
)}
{record.mainPath.includes('printOrder') ? (
<Button
className="p-0"
type="link"
onClick={() => {
window.print();
}}
>
打印
</Button>
) : (
''
)}
{record.mainPath.includes('confirmReceipt') ? (
<ButtonConfirm
className="p-0"
title="确认开票?"
text="开票"
onConfirm={() => {}}
/>
) : (
''
)}
{record.mainPath.includes('updateOrder') ? (
<Button
className="p-0"
type="link"
onClick={() => {
setOrderDrawerVisible(true);
setOrderRow(record);
}}
>
编辑
</Button>
) : (
''
)}
{record.mainPath.includes('checkOrder') ? (
<Button
className="p-0"
type="link"
onClick={() => {
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);
mainTableRef.current?.reload();
}
}}
/>
) : (
''
)}
</Space>
</Space.Compact>
<Space.Compact direction="vertical">
<Button
type="primary"
// todo change main_order_id
onClick={() => handleExpand(record.id)}
size="small"
>
{expandedRowKeys.includes(record.id) ? '收起详情' : '订单详情'}
</Button>
</Space.Compact>
</Space>
</Flex>
</Flex>
);
};
// 主订单列表
const mainOrdersColumns: ProColumns<OrderType>[] = MAIN_ORDER_COLUMNS.map(
(item) => {
if (item.dataIndex === 'name') {
return {
...item,
render: (text, record) => {
return <MainOrderColumnRender record={record} />;
},
};
}
return item;
},
);
const expandedRowRender = (record) => {
let subOrders = record.subOrderInformationLists;
return (
<ProTable
columns={(SUB_ORDER_COLUMNS as any)
.map((item) => {
if (item.component === 'tag') {
return {
...item,
render: (text: string) => {
let label = enumValueToLabel(text, ORDER_STATUS_OPTIONS);
if (label === undefined) {
label = enumValueToLabel(text, INVOCING_STATUS_OPTIONS);
}
let color = 'gold';
if (label === '已开票' || label === '已审核') {
color = 'green';
}
return <Tag color={color}>{label}</Tag>;
},
};
}
//枚举字段处理
if (
item.key === 'paymentMethod' ||
item.key === 'paymentChannel' ||
item.key === 'logisticsMethod'
) {
return {
...item,
render: (text: string) => {
let label = enumValueToLabel(text, PAYMENT_CHANNEL_OPTIONS);
if (label === undefined) {
label = enumValueToLabel(text, PAYMENT_METHOD_OPTIONS);
}
if (label === undefined) {
label = enumValueToLabel(text, LOGISTICS_STATUS_OPTIONS);
}
return label;
},
};
}
return item;
})
.concat([
{
title: '操作',
dataIndex: 'operation',
key: 'operation',
align: 'center',
render: (optText, optRecord) => (
<Flex>
{optRecord.subPath.includes('sendProduct') ? (
<Button
className="p-0"
type="link"
onClick={() => {
optRecord.mainOrderId = record.id;
setSelectedRows([cloneDeep(optRecord)]); //克隆一份数据,避免后续修改污染
setDeliverVisible(true);
}}
>
发货
</Button>
) : (
''
)}
{optRecord.subPath.includes('printOrder') ? (
<Button
className="p-0"
type="link"
onClick={async () => {
//调用打印接口
let body = { subIds: [optRecord.id] };
const data = await postServiceOrderPrintOrder({
data: body,
});
if (data.result === RESPONSE_CODE.SUCCESS) {
message.success(data.message);
window.print();
mainTableRef.current?.reload();
}
}}
>
打印
</Button>
) : (
''
)}
{optRecord.subPath.includes('confirmReceipt') ? (
<ButtonConfirm
className="p-0"
title="确认开票?"
text="开票"
onConfirm={() => {}}
/>
) : (
''
)}
{optRecord.subPath.includes('updateOrder') ? (
<Button
className="p-0"
type="link"
onClick={() => {
setOrderDrawerVisible(true);
setOrderRow(optRecord);
}}
>
编辑
</Button>
) : (
''
)}
{optRecord.subPath.includes('checkOrder') ? (
<Button
className="p-0"
type="link"
onClick={() => {
setOrderRow(optRecord);
setCheckVisible(true);
}}
>
审核
</Button>
) : (
''
)}
{/* {optRecord.subPath.includes("OrderCancel") ?
<ButtonConfirm
className="p-0"
title="确认作废?"
text="作废"
onConfirm={() => {
}}
/>
: ''
} */}
</Flex>
),
},
{
title: '备注',
dataIndex: 'notes',
key: 'notes',
align: 'center',
render: () => (
<Button type="dashed" size="small">
详情
</Button>
),
},
])}
rowSelection={{
onChange: (selectedRowKeys: any, selectedRows: any) => {
setSelectedRowObj({
...setSelectedRowObj,
[record.id]: selectedRows,
});
},
// 自定义选择项参考: 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}
/>
);
};
function toolBarRender() {
let toolBtns = [];
//导出按钮配置
const items: MenuProps['items'] = [
{
label: '导出已选中订单',
key: '1',
onClick: async () => {
if (selectedItems.length === 0) {
message.error('请选择订单');
return;
}
let body = { flag: true, ids: selectedItems };
// const data = await postServiceOrderExport({ data: { flag: true, ids: selectedItems } });
orderExport(body);
// if (data.result === RESPONSE_CODE.SUCCESS) {
// message.success(data.message);
// }
},
},
{
label: '导出当前页订单',
key: '2',
onClick: async () => {
if (mainOrderAllItemKeys.length === 0) {
message.error('当前没有订单');
return;
}
const data = await postServiceOrderExport({
data: { flag: true, ids: mainOrderAllItemKeys },
});
if (data.result === RESPONSE_CODE.SUCCESS) {
message.success(data.message);
}
},
},
{
label: '导出所有订单',
key: '3',
onClick: async () => {
const data = await postServiceOrderExport({
data: { flag: false, ids: [] },
});
if (data.result === RESPONSE_CODE.SUCCESS) {
message.success(data.message);
}
},
},
];
const menuProps = {
items,
onClick: () => {},
};
if (rolePath.includes('addOrder')) {
toolBtns.push(
<Button
type="primary"
key="out"
onClick={() => setOrderDrawerVisible(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: '订单管理',
}}
>
<ProTable
actionRef={mainTableRef}
expandIconColumnIndex={-1}
columns={mainOrdersColumns}
rowKey="id"
pagination={{
showQuickJumper: true,
pageSize: 10,
}}
expandedRowKeys={expandedRowKeys}
expandable={{ expandedRowRender }}
dateFormatter="string"
options={false}
headerTitle="订单列表"
search={{
labelWidth: 'auto',
}}
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);
return {
data: data?.data || [],
total: data?.total || 0,
};
}}
toolBarRender={() => {
return toolBarRender();
}}
/>
{orderDrawerVisible && (
<OrderDrawer
data={orderRow}
onClose={() => {
setOrderDrawerVisible(false);
setOrderRow({});
mainTableRef.current?.reload();
}}
/>
)}
{checkVisible && (
<CheckModal
setCheckVisible={setCheckVisible}
data={orderRow}
onClose={() => {
setCheckVisible(false);
setOrderRow({});
mainTableRef.current?.reload();
}}
/>
)}
{deliverVisible && (
<DeliverModal
data={selectedRows}
onClose={() => {
setDeliverVisible(false);
setOrderRow({});
mainTableRef.current?.reload();
}}
/>
)}
</PageContainer>
);
};
export default OrderPage;