Blame view

src/pages/order3/SaleTask/components/SaleTaskAutoAssign.tsx 6.65 KB
bdad4eb5   Shinner   调试自动分配接口
1
2
3
4
5
  import React, { useContext, useEffect, useRef, useState } from "react";
  import {
    Table,
    Form,
    InputRef,
bdad4eb5   Shinner   调试自动分配接口
6
7
8
9
10
11
12
13
    Row,
    Button,
    message,
    Modal,
    InputNumber,
  } from "antd";
  import type { FormInstance } from "antd/es/form";
  import * as API from "../api";
90c2447f   Shinner   零售任务快捷分配交互优化
14
  import "./index.less";
bdad4eb5   Shinner   调试自动分配接口
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
  import { MAX_NUM } from "../entity";
  
  type EditableTableProps = Parameters<typeof Table>[0];
  type ColumnTypes = Exclude<EditableTableProps["columns"], undefined>;
  interface Item {
    id: string;
    shopName: string;
    taskCount: number;
    newEnergyTaskCount: number;
    fuelVehicleTaskCount: number;
    tackCarTaskCount: number;
  }
  interface EditableRowProps {
    index: number;
  }
  interface EditableCellProps {
    title: React.ReactNode;
    editable: boolean;
    children: React.ReactNode;
    dataIndex: keyof Item;
    record: Item;
    handleSave: (record: Item) => void;
  }
  
  const defaultColumns: (ColumnTypes[number] & {
    editable?: boolean;
    dataIndex: string;
  })[] = [
    {
      title: "门店",
      dataIndex: "shopName",
      editable: false,
    },
    {
      title: "零售任务(台)",
      dataIndex: "taskCount",
      editable: true,
    },
    {
      title: "新能源车任务(台)",
      dataIndex: "newEnergyTaskCount",
      editable: true,
    },
    {
      title: "传统燃油车任务(台)",
      dataIndex: "fuelVehicleTaskCount",
      editable: false,
    },
    {
d0ec8e16   Shinner   二级表头
64
      title: "攻坚车任务(台)",
bdad4eb5   Shinner   调试自动分配接口
65
66
67
68
69
70
71
72
      dataIndex: "tackCarTaskCount",
      editable: true,
    },
  ];
  
  interface SaleTaskAutoAssignProps {
    id: number;
    value?: API.ShopTaskItem[];
90c2447f   Shinner   零售任务快捷分配交互优化
73
    onCancel: () => void;
e53e82c2   Shinner   修改函数名字
74
    onRefresh: () => void;
bdad4eb5   Shinner   调试自动分配接口
75
76
  }
  
a60f9f4a   Shinner   调试批量设置接口
77
  export default function SaleTaskAutoAssign(props: SaleTaskAutoAssignProps) {
bdad4eb5   Shinner   调试自动分配接口
78
79
80
81
    const EditableContext = React.createContext<FormInstance<any> | null>(null);
    const [dataSource, setDataSource] = useState<API.ShopTaskItem[]>([]);
  
    useEffect(() => {
a60f9f4a   Shinner   调试批量设置接口
82
83
      setDataSource(props.value ? [...props.value] : []);
    }, [props.value]);
bdad4eb5   Shinner   调试自动分配接口
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
  
    const EditableRow: React.FC<EditableRowProps> = ({ index, ...props }) => {
      const [form] = Form.useForm();
      return (
        <Form form={form} component={false}>
          <EditableContext.Provider value={form}>
            <tr {...props} />
          </EditableContext.Provider>
        </Form>
      );
    };
  
    const EditableCell: React.FC<EditableCellProps> = ({
      title,
      editable,
      children,
      dataIndex,
      record,
      handleSave,
      ...restProps
    }) => {
      const [editing, setEditing] = useState(false);
      const inputRef = useRef<InputRef>(null);
      const form = useContext(EditableContext)!;
  
      useEffect(() => {
        if (editing) {
          inputRef.current!.focus();
        }
      }, [editing]);
  
      const toggleEdit = () => {
        setEditing(!editing);
        form.setFieldsValue({ [dataIndex]: record[dataIndex] });
      };
  
      const save = async () => {
        try {
          const values = await form.validateFields();
          toggleEdit();
          handleSave({ ...record, ...values });
        } catch (errInfo) {
          console.log("Save failed:", errInfo);
        }
      };
  
      let childNode = children;
  
      if (editable) {
        childNode = editing ? (
          <Form.Item
            noStyle
            name={dataIndex}
            rules={[
              {
                required: true,
                message: `请输入${title}`,
              },
            ]}
          >
            <InputNumber
              ref={inputRef}
              min={0}
              max={MAX_NUM}
              style={{ width: "80px" }}
              onPressEnter={save}
              onBlur={save}
            />
          </Form.Item>
        ) : (
          <div className="editable-cell-value-wrap" onClick={toggleEdit}>
            {children}
          </div>
        );
      }
  
      return <td {...restProps}>{childNode}</td>;
    };
  
    const handleSave = (row: API.ShopTaskItem) => {
      const newData = [...dataSource];
      const index = newData.findIndex((item) => row.id === item.id);
      const item = newData[index];
      if (row.taskCount !== 0 && row.newEnergyTaskCount > row.taskCount) {
        message.warn("新能源车任务台数不得超过零售任务台数");
        return;
      }
      const newRow = {
        ...item,
        ...row,
        fuelVehicleTaskCount: row.taskCount - row.newEnergyTaskCount,
      };
      if (row.taskCount === 0) {
        newRow.taskCount = 0;
        newRow.newEnergyTaskCount = 0;
        newRow.fuelVehicleTaskCount = 0;
      }
      newData.splice(index, 1, newRow);
bdad4eb5   Shinner   调试自动分配接口
182
183
184
185
186
      setDataSource(newData);
    };
  
    const autoAssignSaleTask = (isAssignToAdviser: boolean) => {
      Modal.confirm({
d0ec8e16   Shinner   二级表头
187
188
189
190
191
192
193
194
195
196
197
198
199
        title: isAssignToAdviser ? (
          <span>
            确认分配到
            <span className="tip">全部门店和顾问</span>
            吗?
          </span>
        ) : (
          <span>
            确认分配到
            <span className="tip">全部门店</span>
            吗?
          </span>
        ),
bdad4eb5   Shinner   调试自动分配接口
200
201
202
203
        zIndex: 1002,
        onOk: async () => {
          const hide = message.loading("分配中,请稍候", 0);
          API.autoAssignSaleTask({
a60f9f4a   Shinner   调试批量设置接口
204
            id: props.id,
bdad4eb5   Shinner   调试自动分配接口
205
206
207
208
209
210
211
212
213
214
215
            shopTaskList: dataSource.map((item) => ({
              shopId: item.shopId,
              taskCount: item.taskCount,
              newEnergyTaskCount: item.newEnergyTaskCount,
              fuelVehicleTaskCount: item.fuelVehicleTaskCount,
              tackCarTaskCount: item.tackCarTaskCount,
            })),
            assignTask: isAssignToAdviser,
          })
            .then((res) => {
              message.success("分配成功");
a60f9f4a   Shinner   调试批量设置接口
216
              props.onRefresh();
bdad4eb5   Shinner   调试自动分配接口
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
            })
            .catch((error: any) => {
              message.error(error.message ?? "请求失败");
            })
            .finally(() => {
              hide();
            });
        },
      });
    };
  
    const components = {
      body: {
        row: EditableRow,
        cell: EditableCell,
      },
    };
  
    const columns = defaultColumns.map((col) => {
      if (!col.editable) {
        return col;
      }
      return {
        ...col,
        onCell: (record: API.ShopTaskItem) => ({
          record,
          editable: col.editable,
          dataIndex: col.dataIndex,
          title: col.title,
          handleSave,
        }),
      };
    });
  
    return (
      <>
        <Table
          components={components}
          rowClassName={() => "editable-row"}
          bordered
          rowKey="id"
          dataSource={dataSource}
          columns={columns as ColumnTypes}
        />
        <Row align="middle" justify="center" style={{ marginTop: 20 }}>
90c2447f   Shinner   零售任务快捷分配交互优化
262
          <Button onClick={props.onCancel}>取消</Button>
bdad4eb5   Shinner   调试自动分配接口
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
          <Button
            type="primary"
            style={{ marginLeft: 10 }}
            onClick={() => autoAssignSaleTask(false)}
          >
            分配到门店
          </Button>
          <Button
            type="primary"
            style={{ marginLeft: 10 }}
            onClick={() => autoAssignSaleTask(true)}
          >
            分配到门店和顾问
          </Button>
        </Row>
      </>
    );
  }