Blame view

src/pages/performance/EvaGroupSetting/EditComfirm/components/AddLadderParamsModal.tsx 9.08 KB
240daf62   曾柯   考评组设置台阶参数提交
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
  /* eslint-disable no-return-assign */
  /* eslint-disable no-return-assign */
  import React, { useEffect, useState } from "react";
  import { Modal, Form, Select, InputNumber, message, Spin, Radio, Input, Button } from "antd";
  import { useStore } from "../index";
  import { queryPostIndicatorApi, queryShopIndicatorApi } from "../api";
  import _ from "lodash";
  import useInitail from "@/hooks/useInitail";
  import { EvaGroupSetteing } from "@/pages/performance/EvaGroupSetting/interface";
  import { TargetType, TargetTypeEnum } from "@/pages/performance/entity";
  
  const Option = Select.Option;
  interface Props {
    addComVisible: boolean;
    onCancel: Function;
    postId?: number;
    shopIds?: string;
    onOk: (vales: any) => void;
    comItem: Commission;
    setItemId: Function;
    scopeType: number;
  }
  type Commission = EvaGroupSetteing.CommissionParams;
  export default function AddLadderParamsModal(props: Props) {
    const percent = /^\d\.([1-9]{1,2}|[0-9][1-9])$|^[1-9]\d{0,1}(\.\d{1,2}){0,1}$|^100(\.0{1,2}){0,1}$/;
    const Momney = /^([1-9]\d*(\.\d{1,2})?|([0](\.([0][1-9]|[1-9]\d{0,1}))))$/;
    const [form] = Form.useForm();
5ac136b7   曾柯   考评组设置1620
28
    const { selectedIndicatorsLadder, setSelectedIndicatorsLadder, setParamAlias } = useStore();
240daf62   曾柯   考评组设置台阶参数提交
29
30
31
32
33
34
  
    const [isTarget, setIsTarget] = useState(false);
    const [dataType, setDataType] = useState<number>(2);
    // console.log(form);
    const { addComVisible, onCancel, postId, shopIds, onOk, comItem, setItemId, scopeType } = props;
    const [delay, setDelay] = useState(true);
35f42afa   曾柯   考评设置
35
    // 保存选中绩效指标需要配置的绩效考核目标值类型
240daf62   曾柯   考评组设置台阶参数提交
36
37
38
39
40
41
42
43
44
45
46
47
    const [targetType, setTargetType] = useState<number>();
    // 保存选中指标是否考评类型
    const [codeType, setCodeType] = useState<number>();
    // 保存过滤后指标列表
    const [newIndicators, setNewIndicators] = useState<EvaGroupSetteing.IndicatorByPost[]>([]);
    const [name, setIndicatorName] = useState("");
    const [id, setId] = useState(0);
    const {
      data: indicatorsList,
      setParams,
      loading,
    } = useInitail(
f3e17a99   曾柯   考评0221
48
      scopeType == 1 ? queryPostIndicatorApi : queryShopIndicatorApi,
240daf62   曾柯   考评组设置台阶参数提交
49
      [],
f3e17a99   曾柯   考评0221
50
      scopeType == 1 ? { postId } : {},
240daf62   曾柯   考评组设置台阶参数提交
51
52
53
      delay
    );
    useEffect(() => {
f3e17a99   曾柯   考评0221
54
      setParams(scopeType == 1 ? { postId } : {}, true);
240daf62   曾柯   考评组设置台阶参数提交
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
      setDelay(false);
      setTargetType(1);
    }, [addComVisible]);
    // 修改
  
    useEffect(() => {
      if (indicatorsList && indicatorsList.length > 0 && !comItem.code) {
        const res = indicatorsList.filter((item) => !selectedIndicatorsLadder.find((y) => y === item.code));
        setNewIndicators([...res]);
      }
      if (addComVisible && comItem.code) {
        const indTar = indicatorsList.find((item) => item.code == comItem.code)?.targetType;
        console.log("indTar", indTar);
        console.log("comItem.targetType", comItem.targetType);
        setTargetType(indTar);
        setIndicatorName(comItem.name);
27123514   曾柯   考评组排名倒数
71
        setCodeType(comItem.codeType);
240daf62   曾柯   考评组设置台阶参数提交
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
        form.setFieldsValue({
          ...comItem,
          ladderParams: {
            value: comItem.code,
            label: comItem.name,
            dataType: comItem.dataType,
          },
        });
      }
      if (comItem.targetValue && comItem.targetCalcType) {
        setIsTarget(true);
      }
    }, [indicatorsList]);
    useEffect(() => {
      if (targetType === TargetTypeEnum["无"]) {
        setIsTarget(false);
      }
    }, [targetType]);
    useEffect(() => {
      setIsTarget(false);
    }, [id]);
    // 校验表单数据
    function transformDTO(formData: any) {
      let detail = {};
      _.each(formData, (value: any, key: string) => {
        switch (key) {
          case "ladderParams":
            const _options = value || {};
ccdb0384   曾柯   考评组配置及数据导入
100
            detail.name = _options.label[0];
240daf62   曾柯   考评组设置台阶参数提交
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
            detail.code = _options.value;
            break;
          default:
            detail[key] = value;
            break;
        }
      });
      return detail;
    }
    function handSubmit(fieldsValue: any) {
      const pa: any = transformDTO(fieldsValue);
      pa.targetType = targetType;
      pa.codeType = codeType;
      if (comItem.dataType) {
        pa.dataType = comItem.dataType;
      }
      if (!comItem.dataType) {
        pa.dataType = dataType;
      }
      console.log("100pa", pa);
      const newItemId = pa.code;
      // 编辑时,不需要push id
      if (!comItem.code) {
        const tmpIds = [...selectedIndicatorsLadder];
        tmpIds.push(newItemId);
        setSelectedIndicatorsLadder([...tmpIds]);
      } else {
        pa.code = comItem.code;
        pa.name = comItem.name;
      }
      onOk(pa);
      onCancel && onCancel();
    }
    return (
      <Modal
        visible={addComVisible}
        title={`${comItem.code ? "编辑" : "新增"}台阶得分指标`}
        maskClosable={false}
        afterClose={() => {
          form.resetFields();
          onCancel();
        }}
        onCancel={() => onCancel()}
        onOk={form.submit}
        width={1000}
      >
        <Spin spinning={loading}>
          <Form form={form} labelCol={{ span: 6 }} wrapperCol={{ span: 18 }} onFinish={handSubmit}>
            <Form.Item name="ladderParams" label="计分指标" rules={[{ required: true, message: "计分指标" }]}>
              <Select
ccdb0384   曾柯   考评组配置及数据导入
151
                placeholder="选择指标(*为考评指标,无*为绩效指标)"
240daf62   曾柯   考评组设置台阶参数提交
152
153
154
155
156
157
158
                labelInValue
                disabled={!!comItem.code}
                onChange={(value, Option: any) => {
                  setTargetType(Option.targetType);
                  setItemId(Option.key);
                  setId(Option.key);
                  setIndicatorName(Option.children);
ccdb0384   曾柯   考评组配置及数据导入
159
                  setParamAlias(Option.name);
240daf62   曾柯   考评组设置台阶参数提交
160
161
162
163
164
165
166
167
168
169
170
171
172
                  setDataType(Option.dataType);
                  setCodeType(Option.codeType);
                }}
                showSearch
                optionFilterProp="children"
              >
                {newIndicators.map((item) => (
                  <Option
                    value={item.code}
                    key={item.code}
                    targetType={item.targetType}
                    dataType={item.dataType}
                    codeType={item.codeType}
ccdb0384   曾柯   考评组配置及数据导入
173
                    name={item.name}
240daf62   曾柯   考评组设置台阶参数提交
174
175
                  >
                    {item.name}
ccdb0384   曾柯   考评组配置及数据导入
176
                    {item.codeType == 2 ? "*" : ""}
240daf62   曾柯   考评组设置台阶参数提交
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
                  </Option>
                ))}
              </Select>
            </Form.Item>
            <div style={{ display: "flex", justifyContent: "flex-start" }}>
              <Form.Item
                name="proportion"
                label="占比"
                rules={[
                  { pattern: percent, message: "请输入大于0小于等于100的数(最多保留两位小数)" },
                  { required: true, message: "请输入占比数" },
                ]}
                style={{ width: "100%" }}
              >
                <InputNumber style={{ width: "100%" }} addonAfter="%" />
              </Form.Item>
            </div>
            <Form.Item name="cap" label="是否封顶" rules={[{ required: true, message: "请选择" }]}>
              <Radio.Group>
                <Radio value>是</Radio>
                <Radio value={false}>否</Radio>
              </Radio.Group>
            </Form.Item>
            {(targetType === TargetTypeEnum["百分比"] ||
              targetType === TargetTypeEnum["金额"] ||
              targetType === TargetTypeEnum["数量"]) && (
              <div style={{ marginLeft: 65 }}>
                <Button type="link" onClick={() => setIsTarget(true)}>
35f42afa   曾柯   考评设置
205
                  考核目标值设置(可选项)
240daf62   曾柯   考评组设置台阶参数提交
206
207
208
                </Button>
                {isTarget && (
                  <Button type="link" onClick={() => setIsTarget(false)}>
35f42afa   曾柯   考评设置
209
                    删除该项考核目标设置
240daf62   曾柯   考评组设置台阶参数提交
210
211
212
213
214
215
                  </Button>
                )}
              </div>
            )}
            {isTarget && (
              <>
35f42afa   曾柯   考评设置
216
                <Form.Item label="考核目标名称" name="targetName">
240daf62   曾柯   考评组设置台阶参数提交
217
218
219
                  <Select disabled defaultValue={name} />
                </Form.Item>
                <Form.Item
35f42afa   曾柯   考评设置
220
                  label="考核目标计算类型"
240daf62   曾柯   考评组设置台阶参数提交
221
                  name="targetCalcType"
35f42afa   曾柯   考评设置
222
                  rules={[{ required: true, message: "请选择考核目标计算类型" }]}
240daf62   曾柯   考评组设置台阶参数提交
223
224
                >
                  <Radio.Group>
35f42afa   曾柯   考评设置
225
                    <Radio value={1}>考核目标值计算 </Radio>
240daf62   曾柯   考评组设置台阶参数提交
226
227
228
229
                    <Radio value={2}>最低要求计算</Radio>
                  </Radio.Group>
                </Form.Item>
                <Form.Item
35f42afa   曾柯   考评设置
230
                  label="考核目标值"
240daf62   曾柯   考评组设置台阶参数提交
231
232
                  name="targetValue"
                  rules={[
35f42afa   曾柯   考评设置
233
                    { required: true, message: "请输入考核目标值" },
240daf62   曾柯   考评组设置台阶参数提交
234
235
236
237
238
239
240
241
242
243
                    {
                      pattern: targetType === TargetTypeEnum["百分比"] ? percent : Momney,
                      message:
                        targetType === TargetTypeEnum["百分比"]
                          ? "请输入大于0小于等于100的数(保留两位小数)"
                          : "请输入大于0的数(保留两位小数)",
                    },
                  ]}
                >
                  <InputNumber
35f42afa   曾柯   考评设置
244
                    placeholder="请输入考核目标值"
240daf62   曾柯   考评组设置台阶参数提交
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
                    style={{ width: "100%" }}
                    addonAfter={
                      targetType === TargetTypeEnum["百分比"]
                        ? "%"
                        : targetType === TargetTypeEnum["金额"]
                        ? "元"
                        : "数量"
                    }
                  />
                </Form.Item>
              </>
            )}
          </Form>
        </Spin>
      </Modal>
    );
  }