Blame view

src/pages/order3/SaleTask/components/SaleTaskAutoAssign.tsx 6.49 KB
bdad4eb5   Shinner   调试自动分配接口
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
  import React, { useContext, useEffect, useRef, useState } from "react";
  import {
    Table,
    Form,
    InputRef,
    Input,
    Row,
    Button,
    message,
    Modal,
    InputNumber,
  } from "antd";
  import type { FormInstance } from "antd/es/form";
  import * as API from "../api";
  import styles from "./index.less";
  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,
    },
    {
      title: "攻坚车任务数(台)",
      dataIndex: "tackCarTaskCount",
      editable: true,
    },
  ];
  
  interface SaleTaskAutoAssignProps {
    id: number;
    value?: API.ShopTaskItem[];
e53e82c2   Shinner   修改函数名字
74
    onRefresh: () => void;
bdad4eb5   Shinner   调试自动分配接口
75
76
77
78
79
  }
  
  export default function SaleTaskAutoAssign({
    id,
    value,
e53e82c2   Shinner   修改函数名字
80
    onRefresh,
bdad4eb5   Shinner   调试自动分配接口
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
  }: SaleTaskAutoAssignProps) {
    const EditableContext = React.createContext<FormInstance<any> | null>(null);
    const [dataSource, setDataSource] = useState<API.ShopTaskItem[]>([]);
  
    useEffect(() => {
      setDataSource(value ? [...value] : []);
    }, [value]);
  
    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);
      console.log("handleSave newData", newData);
      setDataSource(newData);
    };
  
    const autoAssignSaleTask = (isAssignToAdviser: boolean) => {
      Modal.confirm({
        title: isAssignToAdviser
          ? "确认分配到门店和顾问吗?"
          : "确认分配到门店吗?",
        zIndex: 1002,
        onOk: async () => {
          const hide = message.loading("分配中,请稍候", 0);
          API.autoAssignSaleTask({
            id,
            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("分配成功");
e53e82c2   Shinner   修改函数名字
211
              onRefresh();
bdad4eb5   Shinner   调试自动分配接口
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
            })
            .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 }}>
e53e82c2   Shinner   修改函数名字
257
          <Button onClick={onRefresh}>取消</Button>
bdad4eb5   Shinner   调试自动分配接口
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
          <Button
            type="primary"
            style={{ marginLeft: 10 }}
            onClick={() => autoAssignSaleTask(false)}
          >
            分配到门店
          </Button>
          <Button
            type="primary"
            style={{ marginLeft: 10 }}
            onClick={() => autoAssignSaleTask(true)}
          >
            分配到门店和顾问
          </Button>
        </Row>
      </>
    );
  }