Blame view

src/pages/Client/FollowRecord/Components/ClientModal.tsx 20.4 KB
1
2
3
4
5
import { RESPONSE_CODE } from '@/constants/enum';
import {
  postAdminClientAddOrModifyClientComunicationInfo,
  postAdminClientQueryClientPage,
  postOrderErpOrderStagesUpload,
6
  postOrderErpUsersListByPage,
7
  postServiceConstClientWay,
8
  postServiceConstTradeStatus,
9
10
11
} from '@/services';
import { enumToSelect } from '@/utils';
import {
12
  FormListActionType,
13
  ModalForm,
14
  ProCard,
15
  ProFormDateTimePicker,
16
  ProFormList,
17
18
19
20
21
  ProFormSelect,
  ProFormText,
  ProFormTextArea,
  ProFormUploadDragger,
} from '@ant-design/pro-components';
22
import { Button, Form, message } from 'antd';
23
import { RcFile } from 'antd/es/upload';
24
import { useEffect, useRef } from 'react';
25
import './style.css';
26
export default ({ data, type, reloadTable }) => {
27
  useEffect(() => {});
28
  const [form] = Form.useForm();
29
30
31
32
33
34
  const actionRef = useRef<
    FormListActionType<{
      name: string;
    }>
  >();
  const fileList: any = [];
35
  const onfinish = async (values) => {
36
    let list = values.ticketsList;
37
38
    list = list.map((item) => {
      let itemAnnexUrl = null;
39
      // 尝试从 item.filePaths 中获取 annexUrl
40
41
      if (item?.filePaths) {
        itemAnnexUrl = item?.filePaths?.[0]?.response?.data?.[0] || null;
42
      } else {
43
        itemAnnexUrl = null;
44
      }
45
      item.annexUrl = itemAnnexUrl;
46
47
48
      return item;
    });
    values.list = list;
49
50
51
52
53
54
    const resSearchId = await postAdminClientQueryClientPage({
      data: {
        groupFilter: 'all',
      },
    });
    const matchingItem = resSearchId.data.data.find(
柏杨 authored
55
      (item) => item.id === values.name,
56
57
58
59
    );
    let matchedId;
    if (matchingItem) {
      matchedId = matchingItem.id; // 匹配成功,取出 id
柏杨 authored
60
      values.name = matchingItem.name;
61
62
63
64
65
66
    } else {
      matchedId = null; // 如果没有匹配项,可以设置为 null 或其他值
    }
    const res = await postAdminClientAddOrModifyClientComunicationInfo({
      data: {
        ...values,
67
        // ticketsAttachments: form.getFieldValue('ticketsAttachments'),
68
69
70
71
72
73
74
75
76
77
        clientId: matchedId,
      },
    });
    if (res.result === RESPONSE_CODE.SUCCESS) {
      message.success('新增成功');
      reloadTable();
      return true;
    }
    // 不返回不会关闭弹框
  };
78
79
80
81
  const editOnfinish = async (values) => {
    // setEditClientId(data.clientId);
    values.clientId = data.clientId;
82
83
84
85
86
87
88
89
    let list = values.ticketsList;
    // list = list.map((item) => {
    //   // item.annexUrl = item.filePaths?.map((file) => {
    //   //   return { url: file.response.data[0] };
    //   // });
    //   // item.annexUrl = item?.filePaths[0].response?.data[0];
    //   item.annexUrl = item?.filePaths?.[0]?.response?.data?.[0] || null; // 使用 null 或默认值
    //   return item;
90
    // });
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
    list = list.map((item, index) => {
      // 尝试从 item.filePaths 中获取 annexUrl
      const itemAnnexUrl = item?.filePaths?.[0]?.response?.data?.[0] || null;

      // 如果 itemAnnexUrl 为 null,则使用 data.ticketsList 对应的 annexUrl
      if (
        itemAnnexUrl === null &&
        data.ticketsList[index]?.annexUrl &&
        index < data.ticketsList.length
      ) {
        item.annexUrl = data.ticketsList[index].annexUrl; // 确保对比中的 annesUrl 也是 null
      } else {
        item.annexUrl = itemAnnexUrl; // 否则,使用从 item.filePaths 中获取的值
      }
      return item;
    });
    values.list = list;
108
109
110
111
112
113
114
115
116
117
118
119
    const res = await postAdminClientAddOrModifyClientComunicationInfo({
      data: {
        ...values,
      },
    });
    if (res.result === RESPONSE_CODE.SUCCESS) {
      message.success('新增成功');
      reloadTable();
      return true;
    }
    // 不返回不会关闭弹框
  };
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  const optType = {
    add: {
      readOnly: false,
      title: '新增跟进记录',
      button: (
        <Button size={'middle'} type="primary">
          新增
        </Button>
      ),
      onFinish: onfinish,
    },
    modify: {
      readOnly: false,
      title: '修改跟进记录',
      button: (
        <Button size={'middle'} type="primary">
          编辑
        </Button>
      ),
139
      onFinish: editOnfinish,
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
    },
    detail: {
      readOnly: true,
      title: '查看跟进记录',
      button: (
        <Button size={'middle'} type="primary" color="red">
          查看
        </Button>
      ),
      onFinish: () => {},
    },
  };
  return (
    <ModalForm
      title={optType[type].title}
      resize={{
        onResize() {
          console.log('resize!');
        },
        maxWidth: window.innerWidth * 0.8,
        minWidth: 400,
      }}
      form={form}
      trigger={optType[type].button}
      autoFocusFirstInput
      drawerProps={{
        destroyOnClose: true,
      }}
      submitTimeout={2000}
      onFinish={optType[type].onFinish}
    >
      <ProFormSelect
        name="name"
        readonly={optType[type].readOnly}
        fieldProps={{
          labelInValue: false,
          disabled: type === 'modify',
        }}
        initialValue={data ? data?.clientName + '' : null}
        label="客户"
        width="sm"
        request={async () => {
          const res = await postAdminClientQueryClientPage({
            data: {
              groupFilter: 'all',
            },
          });
柏杨 authored
187
188
189
190
191
192
193
194
195
196
197
198
199
          // const namesArray = res.data.data.map((item) => item.name);
          // const formattedObject = res.data.data.reduce((acc, name) => {
          //   acc[name] = name; // 将名称作为键和值
          //   return acc;
          // }, {});
          // console.log(namesArray, '5656namesArray');
          // const formattedObject = res.data.data.reduce((acc, item) => {
          //   acc[item.name] = item.name; // 使用 name 作为键,id 作为值
          //   return acc;
          // }, {});
          // return enumToSelect(formattedObject);
          const options = res.data.data.reduce((acc, item) => {
            acc.push({ label: item.name, value: item.id }); // 使用 name 作为 label,id 作为 value
200
            return acc;
柏杨 authored
201
202
          }, []);
          return options;
203
204
205
206
207
208
209
210
        }}
        rules={[
          {
            required: true,
            message: '请选择客户',
          },
        ]}
      ></ProFormSelect>
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
      <ProFormText
        name="contact"
        label="联系人"
        width="sm"
        placeholder="请输入联系人"
        initialValue={data?.content}
        readonly={optType[type].readOnly}
        rules={[
          {
            required: true,
            message: '请输入联系人',
          },
        ]}
      ></ProFormText>
      <ProFormText
        name="contactPhone"
        label="联系电话"
        width="sm"
        placeholder="请输入联系电话"
        initialValue={data?.content}
        readonly={optType[type].readOnly}
        rules={[
          {
            required: true,
            message: '请输入联系电话',
          },
        ]}
      ></ProFormText>
239
240
      <ProFormDateTimePicker
        name="datetime"
241
        label="跟进日期"
242
243
244
245
246
247
        initialValue={data ? data?.datetime + '' : null}
        placeholder="请选择跟进时间"
        width="sm"
        rules={[
          {
            required: true,
248
            message: '请选择跟进日期',
249
250
251
252
          },
        ]}
      />
      <ProFormSelect
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
        name="tradeStatus"
        label="跟进状态"
        width="sm"
        placeholder="请输入跟进状态"
        readonly={optType[type].readOnly}
        fieldProps={{
          labelInValue: false,
        }}
        initialValue={data?.tradeStatus ? data?.tradeStatus + '' : null}
        rules={[
          {
            required: true,
            message: '请输入跟进状态',
          },
        ]}
        request={async () => {
          const res = await postServiceConstTradeStatus();
          return enumToSelect(res.data);
        }}
      />
      <ProFormSelect
274
275
276
277
278
279
280
        name="way"
        width="sm"
        readonly={optType[type].readOnly}
        fieldProps={{
          labelInValue: false,
        }}
        initialValue={data?.way ? data?.way + '' : null}
281
        label="跟进方式"
282
283
284
285
286
287
288
        request={async () => {
          const res = await postServiceConstClientWay();
          return enumToSelect(res.data);
        }}
        rules={[
          {
            required: true,
289
            message: '请选择跟进方式',
290
291
292
293
294
          },
        ]}
      ></ProFormSelect>
      <ProFormTextArea
        name="content"
295
296
        label="跟进详情"
        placeholder="请输入跟进详情"
297
298
299
300
301
        initialValue={data?.content}
        readonly={optType[type].readOnly}
        rules={[
          {
            required: true,
302
            message: '请输入跟进详情',
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
          },
        ]}
      ></ProFormTextArea>
      <ProFormUploadDragger
        label="附件"
        name="attachment"
        action="upload.do"
        hidden={optType[type].readOnly}
        onChange={(info) => {
          const uploadFile = async ({ fileList: newFileList }) => {
            if (newFileList.length > 0) {
              const formData = new FormData();
              formData.append('file', newFileList[0].originFileObj as RcFile);
              const res = await postOrderErpOrderStagesUpload({
                data: formData,
                headers: {
                  'Content-Type':
                    'multipart/form-data; boundary=----WebKitFormBoundarynl6gT1BKdPWIejNq',
                },
              });
              const url = res.data;
              console.log('attachments' + JSON.stringify(url));
              form.setFieldValue('attachments', url);
            } else {
              form.setFieldValue('attachments', null);
            }
          };
          uploadFile(info);
        }}
        max={1}
      />
      <a hidden={!optType[type].readOnly} href={data?.attachments} download>
        下载附件
      </a>
337
338
339
340
341
342
343
      <ProFormTextArea
        name="comment"
        label="客户评价"
        placeholder="请输入客户评价"
        initialValue={data?.comment}
        readonly={optType[type].readOnly}
      ></ProFormTextArea>
344
345
346
347
348
349
      <ProFormText
        initialValue={data?.attachments}
        name="attachments"
        hidden
      ></ProFormText>
      <ProFormText initialValue={data?.id} name="id" hidden></ProFormText>
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
      <h2>工单指派</h2>
      <ProFormList
        // creatorButtonProps={{ disabled: optType('after-sales-check') }}
        // deleteIconProps={!optType('after-sales-check')}
        deleteIconProps={true}
        name="ticketsList"
        label=""
        copyIconProps={false} //复制按钮不显示
        // initialValue={[
        //   {
        //     ticketsType: '',
        //     ticketsDetail: '',
        //     assignPeople: '',
        //     ticketsAttachment: '',
        //     ticketsAttachments: '',
        //   },
        // ]}
        initialValue={
          optType[type].title === '修改跟进记录'
            ? data.ticketsList || []
            : [
                {
                  type: '',
                  detailText: '',
                  assignPeople: '',
                  annexUrl: '',
                },
              ]
        }
        actionGuard={{
          beforeRemoveRow: async () => {
            return new Promise((resolve) => {
              let list = form.getFieldValue('ticketsList');
              if (list && list.length === 1) {
                message.error('至少需要保留一个工单');
                resolve(false);
                return;
              }
              resolve(true);
            });
          },
        }}
        itemRender={(doms, listMeta) => {
          if (optType[type].title === '修改跟进记录') {
            // let i = 0;
            // // let defaultFileList = data.ticketsList?.annexUrl?.map((annex) => {
            // //   return {
            // //     uid: i++,
            // //     name: annex,
            // //     status: 'uploaded',
            // //     url: annex,
            // //     response: { data: [annex] },
            // //   };
            // // });
            let defaultFileList = [
              {
                uid: listMeta.index,
                name: data.ticketsList[listMeta.index]?.annexUrl,
                status: 'uploaded',
                url: data.ticketsList[listMeta.index]?.annexUrl,
                response: {
                  data: [data.ticketsList[listMeta.index]?.annexUrl],
                },
              },
            ];
            fileList[listMeta.index] = defaultFileList;
          }
          let itemFileList = fileList[listMeta.index];
          return (
            <ProCard
              bordered
              extra={doms.action}
              title={'工单指派' + (listMeta.index + 1)}
              style={{
                marginBlockEnd: 8,
              }}
            >
              {[
                <ProFormSelect
                  key={'type' + listMeta.index}
                  name="type"
                  label="工单类型"
                  width="sm"
                  placeholder="请输入工单类型"
                  readonly={optType[type].readOnly}
                  fieldProps={{
                    labelInValue: false,
                  }}
                  // initialValue={data?.ticketsList?.type ? data?.ticketsList?.type + '' : null}
                  initialValue={
                    data?.ticketsList ? data?.ticketsList?.type + '' : null
                  }
                  request={async () => {
                    return [
                      { label: '问题', value: 'QUESTION' },
                      { label: '需求', value: 'DEMAND' },
                      { label: '建议', value: 'ADVICE' },
                    ];
                  }}
                />,
                <ProFormTextArea
                  key={'detailText' + listMeta.index}
                  name="detailText"
                  label="工单详情"
                  placeholder="请输入工单详情"
                  initialValue={data?.detailText ? data?.detailText + '' : null}
                  readonly={optType[type].readOnly}
                ></ProFormTextArea>,
                <ProFormSelect
                  key={'assignPeople' + listMeta.index}
                  name="assignPeople"
                  width="sm"
                  readonly={optType[type].readOnly}
                  fieldProps={{
                    labelInValue: false,
                  }}
                  initialValue={
                    data?.assignPeople ? data?.assignPeople + '' : null
                  }
                  label="指派人员"
                  request={async () => {
                    const res = await postOrderErpUsersListByPage({
                      data: {
                        pageSize: 10000,
                      },
                    });

                    const userOptions = res.data.records
                      ? res.data.records.map((user) => ({
                          label: user.userName, // 或者使用其他需要的属性
                          value: user.userName, // 作为value的字段
                        }))
                      : [];
                    return userOptions;
                  }}
                ></ProFormSelect>,
                <>
                  <ProFormUploadDragger
                    key={'filePaths' + listMeta.index}
                    label="附件"
                    name="filePaths"
                    action="/api/service/order/fileProcess"
                    fieldProps={{
                      headers: {
                        Authorization: localStorage.getItem('token'),
                      },
                      // headers: {
                      //   'Content-Type':
                      //     'multipart/form-data; boundary=----WebKitFormBoundarynl6gT1BKdPWIejNq',
                      // },
                      itemFileList,
                    }}
                    max={1}
                  />
                </>,
              ]}
            </ProCard>
          );
        }}
        actionRef={actionRef}
      ></ProFormList>
      {/* <div className="styled-text">
512
513
514
515
516
517
518
519
520
521
522
        <div className="vertical-line"></div>
        <span className="text">工单指派</span>
      </div>
      <ProFormSelect
        name="ticketsType"
        label="工单类型"
        width="sm"
        placeholder="请输入工单类型"
        readonly={optType[type].readOnly}
        fieldProps={{
          labelInValue: false,
523
          disabled: data?.ticketsStatus === 'SOLVED',
524
525
526
527
528
529
530
531
532
533
534
535
536
537
        }}
        initialValue={data?.ticketsType ? data?.ticketsType + '' : null}
        request={async () => {
          return [
            { label: '问题', value: 'QUESTION' },
            { label: '需求', value: 'DEMAND' },
            { label: '建议', value: 'ADVICE' },
          ];
        }}
      />
      <ProFormTextArea
        name="ticketsDetail"
        label="工单详情"
        placeholder="请输入工单详情"
538
539
540
541
        fieldProps={{
          labelInValue: false,
          disabled: data?.ticketsStatus === 'SOLVED',
        }}
542
543
        initialValue={data?.ticketsDetail ? data?.ticketsDetail + '' : null}
        readonly={optType[type].readOnly}
544
      ></ProFormTextArea> */}
柏杨 authored
545
      {/* <ProFormUploadDragger
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
        label="工单附件"
        name="ticketsAttachment"
        action="upload.do"
        hidden={optType[type].readOnly}
        onChange={(info) => {
          const uploadFile = async ({ fileList: newFileList }) => {
            if (newFileList.length > 0) {
              const formData = new FormData();
              formData.append('file', newFileList[0].originFileObj as RcFile);
              const res = await postOrderErpOrderStagesUpload({
                data: formData,
                headers: {
                  'Content-Type':
                    'multipart/form-data; boundary=----WebKitFormBoundarynl6gT1BKdPWIejNq',
                },
              });
              const url = res.data;
              console.log('ticketsAttachments' + JSON.stringify(url));
              form.setFieldValue('ticketsAttachments', url);
            } else {
              form.setFieldValue('ticketsAttachments', null);
            }
          };
          uploadFile(info);
        }}
        max={1}
柏杨 authored
572
      /> */}
573
      {/* <Row>
柏杨 authored
574
        <Col span={4}>附件:</Col>
柏杨 authored
575
576
        <Col span={20}>
          <UploadC
577
578
579
580
            fieldProps={{
              labelInValue: false,
              disabled: data?.ticketsStatus === 'SOLVED',
            }}
柏杨 authored
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
            onFilesChange={async (newFileList) => {
              if (newFileList.length > 0) {
                const urls = []; // 创建一个数组来存储所有的 URL

                for (const file of newFileList) {
                  const formData = new FormData();
                  formData.append('file', file.originFileObj as RcFile);

                  const res = await postOrderErpOrderStagesUpload({
                    data: formData,
                    headers: {
                      'Content-Type':
                        'multipart/form-data; boundary=----WebKitFormBoundarynl6gT1BKdPWIejNq',
                    },
                  });

                  const url = res.data; // 获取响应中的 URL
                  urls.push(url); // 将每个 URL 追加到数组中
                }

                // 将所有 URL 使用 ',' 进行拼接
                const combinedUrl = urls.join(',');
                form.setFieldValue('ticketsAttachments', combinedUrl); // 设置表单字段值为拼接后的 URL
              } else {
                form.setFieldValue('ticketsAttachments', null); // 如果没有文件,则清空 URL
              }
            }}
          ></UploadC>
        </Col>
      </Row>
611
612
613
614
615
616
617
618
619
      <a hidden={!optType[type].readOnly} href={data?.orderAttachment} download>
        下载附件
      </a>
      <ProFormSelect
        name="assignPeople"
        width="sm"
        readonly={optType[type].readOnly}
        fieldProps={{
          labelInValue: false,
620
          disabled: data?.ticketsStatus === 'SOLVED',
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
        }}
        initialValue={data?.assignPeople ? data?.assignPeople + '' : null}
        label="指派人员"
        request={async () => {
          const res = await postOrderErpUsersListByPage({
            data: {
              pageSize: 10000,
            },
          });
          const userOptions = res.data.records
            ? res.data.records.map((user) => ({
                label: user.userName, // 或者使用其他需要的属性
                value: user.userName, // 作为value的字段
              }))
            : [];
          return userOptions;
        }}
638
      ></ProFormSelect> */}
639
640
641
    </ModalForm>
  );
};