Blame view

src/pages/performance/CompensateGroupConfig/components/DraftList.tsx 6.97 KB
a07c00d5   曾柯   绩效薪酬审批修改
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
  import React, { useState } from "react";
  import { PageHeaderWrapper } from "@ant-design/pro-layout";
  import { Button, Card, Table, Row, Space, Typography, Divider, Popconfirm, message } from "antd";
  import usePagination from "@/hooks/usePagination";
  import { history } from "umi";
  import { deleteSalaryGroup, quashSalaryGroup, salaryGroupDraftApi } from "../api";
  import DraftFilter from "./DraftFilter";
  import { DraftStatusEnum } from "../entity";
  import { KpiGroupSetteing } from "@/pages/performance/KpiGroupSetting/interface";
  import EmployeesModal from "./EmployeesModal";
  import { CompensateConfig } from "@/pages/performance/CompensateGroupConfig/interface";
  import moment from "moment";
  import ShopModal from "./ShopModal";
  import DetailModal from "../../KpiGroupSetting/components/DetailModal";
  
  const Column = Table.Column;
  interface Props {
    type: number;
  }
  
  export default ({ type }: Props) => {
    const { loading, list, paginationConfig, setParams, innerParams } = usePagination(salaryGroupDraftApi, { status: 2, type: 3 });
    // 查看适用员工
    const [employeeModal, setEmployeeModal] = useState<{
      visible: boolean;
      record?: CompensateConfig.GroupListItems;
    }>({
      visible: false,
      record: {},
    });
    const [visibleDetail, setVisibleDetail] = useState(false);
    const [item, setItem] = useState<any>({});
    const [shopModal, setShopModal] = useState<{
      visible: boolean;
      record?: CompensateConfig.GroupListItems;
    }>({
      visible: false,
      record: {},
    });
  
    const _onCancel = () => {
      setEmployeeModal({ visible: false });
    };
    const shopOnCancel = () => {
      setShopModal({ visible: false });
    };
  
    //删除
    const onDelet = async (id: number) => {
      const pa = { id };
      try {
        const { success } = await deleteSalaryGroup(pa);
        if (success) {
          message.success("删除成功", 5);
          // 重新刷新列表
          setParams({ ...innerParams }, true);
        }
      } catch (error: any) {
        message.error(error.message);
      }
    };
  
    //撤销审批
    const onQuash = async (id: number) => {
      const pa = { id };
      try {
        const { success } = await quashSalaryGroup(pa);
        if (success) {
          message.success("撤销审批成功", 5);
          // 重新刷新列表
          setParams({ ...innerParams }, true);
        }
      } catch (error: any) {
        message.error(error.message);
      }
    };
  
    return (
      <>
        <Row justify="space-between" style={{ marginBottom: 10 }}>
          <DraftFilter setParams={setParams} innerParams={innerParams} />
  
          <Button
            type="primary"
            onClick={() => {
              history.push(`/morax/compensateGroupConfig/edit`);
            }}
          >
            新增
          </Button>
        </Row>
7cf041ab   曾柯   考评组bugfix
92
        <Table loading={loading} rowKey={(row) => `id${row.draftId}`} dataSource={list} pagination={paginationConfig}>
a07c00d5   曾柯   绩效薪酬审批修改
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
          <Column title="薪酬组名称" dataIndex="name" align="center" render={(name) => name || ""} />
          <Column title="岗位" dataIndex="postName" align="center" />
          <Column
            title="薪酬项目(项)"
            dataIndex="projectNum"
            align="center"
            render={(name) => <span>{name || "--"}</span>}
          />
          <Column
            title="适用门店"
            dataIndex="shopNames"
            align="center"
            render={(_: any, record: CompensateConfig.GroupListItems) => (
              <Button type="link" onClick={() => setShopModal({ visible: true, record })}>
                查看
              </Button>
            )}
          />
          <Column
            title="适用员工"
            align="center"
            render={(_: any, record: CompensateConfig.GroupListItems) => (
              <Button type="link" onClick={() => setEmployeeModal({ visible: true, record })}>
                查看
              </Button>
            )}
          />
          <Column
            title="状态"
            align="center"
            dataIndex="status"
            render={(text: number) => (text ? DraftStatusEnum[text] : "--")}
          />
          <Column
            title="生效时间"
            align="center"
            dataIndex="beginTime"
            render={(time: number) => (time ? moment(time).format("YYYY-MM-DD") : "--")}
          />
          <Column
            title="失效时间"
            align="center"
            dataIndex="overTime"
            render={(time: number) => (time ? moment(time).format("YYYY-MM-DD") : "--")}
          />
          <Column
            title="操作"
            width={180}
            align="center"
            render={(_: any, record: KpiGroupSetteing.KpiGroupListItems) => {
              console.log(record);
              return (
                <Space split={<Divider type="vertical" />}>
                  {record.draftStatus == 2 || record.draftStatus == 3 ? (
                    <Typography.Link
                      onClick={() => {
                        setVisibleDetail(true);
                        setItem(record);
                      }}
                    >
                      流程进度
                    </Typography.Link>
                  ) : null}
                  {record.draftStatus == 2 ? (
                    <Typography.Link
                      onClick={() => {
                        history.push(`/morax/compensateGroupConfig/edit/${record.draftId}/true/${type}`);
                      }}
                    >
                      查看
                    </Typography.Link>
                  ) : null}
                  {record.draftStatus == 3 || record.draftStatus == 1 || record.draftStatus == 5 ? (
                    <Typography.Link
                      onClick={() => {
                        history.push(`/morax/compensateGroupConfig/edit/${record.draftId}/false/${type}`);
                      }}
                    >
                      {`${record.draftStatus == 3 ? "重新" : ""}编辑`}
                    </Typography.Link>
                  ) : null}
  
                  {record.draftStatus == 3 || record.draftStatus == 1 || record.draftStatus == 5 ? (
                    <Popconfirm
                      title="确定删除,提交后不可更改?"
                      onConfirm={() => onDelet(record.draftId)}
                      okText="确定"
                      cancelText="取消"
                    >
                      <Typography.Link>删除</Typography.Link>
                    </Popconfirm>
                  ) : null}
                  {record.draftStatus == 2 ? (
                    <Popconfirm
                      title="确定撤销审批,提交后不可更改?"
                      onConfirm={() => onQuash(record.draftId)}
                      okText="确定"
                      cancelText="取消"
                    >
                      <Typography.Link>撤销审批</Typography.Link>
                    </Popconfirm>
                  ) : null}
                </Space>
              );
            }}
          />
        </Table>
        <EmployeesModal employeeModal={employeeModal} onCancel={_onCancel} />
        <ShopModal shopModal={shopModal} onCancel={shopOnCancel} />
        <DetailModal visible={visibleDetail} item={item} onCancel={() => setVisibleDetail(false)} />
      </>
    );
  };