reportInfoButton.js
6.18 KB
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
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
211
212
213
214
215
216
217
218
219
220
import React, { useEffect, useRef } from "react";
import { Modal, Button, Space, Row, Col } from "antd";
import * as commonFunc from "@/components/Common/commonFunc";
import * as commonUtils from "@/utils/utils";
import * as commonBusiness from "@/components/Common/commonBusiness";
import StaticEditTable from "@/components/Common/CommonTable";
import instructSet from "@/components/Common/CommonInstructSet";
const AutoTableHeight = '50vh';
// 业务层
const useTeamInfoEvent = props => {
const nameCrewOrigin = useRef();
const { formData, hasShowInfo } = props;
let queryId = [];
try {
queryId = JSON.parse(props.reportRef?.sActiveKey || '[]')
} catch (error) {
queryId = []
}
const queryFormData = queryId.map(j => {
const result = formData.find(i => i && i.sId === j)
if (result) return result;
}).filter(Boolean);
useEffect (
async () => {
if (commonUtils.isNotEmptyArr(queryFormData) && queryFormData.length === 2) {
const nameCrew = queryFormData[1].sGrd;
const colunmData = handleGetColumnData(queryFormData, true);
const result = await handleGetData(queryFormData, true);
const addState = {
...colunmData,
...result,
[`${nameCrew}SelectedRowKeys`]: hasShowInfo?.sMainAssistantId?.split(',') || [],
};
props.onSaveState(addState);
nameCrewOrigin.current = addState[`${nameCrew}Data`];
}
},
[formData, props.reportRef?.sActiveKey]
);
// 获取表头数据
const handleGetColumnData = (queryFormData = [], isWait) => {
let addState = {};
for (let i = 0; i < queryFormData.length; i++) {
const config = queryFormData[i];
const name = config.sGrd || '';
const column = commonFunc.getHeaderConfig(config);
addState = {
...addState,
[`${name}Column`]: column,
[`${name}Config`]: config,
};
}
if (isWait) {
return addState;
} else {
props.onSaveState(addState);
}
};
// 获取数据集
const handleGetData = async (queryFormData = [], isWait, extraConditions = {}) => {
let addState = {};
for (let i = 0; i < queryFormData.length; i++) {
const config = queryFormData[i];
if (!config) continue;
const name = config.sGrd || '';
const conditonValues = props.onGetSqlConditionValues(config);
const result =
(await props.onGetDataSet({
name: `${name}`,
configData: config,
condition: {
sSqlCondition: {
...conditonValues,
...extraConditions
}
},
isWait: true
})) || {};
addState = { ...addState, ...result };
}
if (isWait) {
return addState;
} else {
props.onSaveState(addState);
}
};
return {
...props,
queryFormData,
nameCrewOrigin,
};
};
export default (_props) => {
if (!_props.reportInfoVisible) return "";
const props = useTeamInfoEvent(_props);
const { queryFormData, nameCrewOrigin } = props;
if (!Array.isArray(queryFormData) || queryFormData.length !== 2) return "";
const namePost = queryFormData[0].sGrd;
const nameCrew = queryFormData[1].sGrd;
const handleShowData = (name, selectedRowKeys) => {
const dataShow = nameCrewOrigin.current;
if (!Array.isArray(dataShow) || !Array.isArray(selectedRowKeys)) return;
const sResponsibleDepartId = props[`${name}Data`]?.find(i => i && selectedRowKeys.includes(i.sId))?.sResponsibleDepartId;
const showData = dataShow.filter(i => i && sResponsibleDepartId === i.sDepartId);
props.onSaveState({ [`${nameCrew}Data`]: showData });
}
const selectData = () => {
return commonFunc.getTableSelectedData({ props: { ...props, [`${nameCrew}Data`]: nameCrewOrigin.current || [] }, tableName: nameCrew });
}
const tablePropsPost = {
...commonBusiness.getTableTypes(namePost, props),
tableProps: {
AutoTableHeight,
},
onSelectRowChange: (name, selectedRowKeys) => {
props.onSaveState({[`${namePost}SelectedRowKeys`]: selectedRowKeys });
handleShowData(name, selectedRowKeys)
}
};
const tableBaseProps = commonBusiness.getTableTypes(nameCrew, props);
const tablePropsCrew = {
...tableBaseProps || {},
tableProps: {
AutoTableHeight,
}
};
const { [`${nameCrew}Data`]: crewData = [], [`${nameCrew}SelectedRowKeys`]: crewSelectedRowKeys = [] } = props;
const tablePropsCollect = {
...tableBaseProps,
data: crewData.filter(item => crewSelectedRowKeys.includes(item.sId)),
tableProps: {
AutoTableHeight,
}
};
// 执行指令集
const handleExecInstructSet = async params => {
const { btnConfig } = params;
const { sInstruct } = btnConfig;
if (!sInstruct) throw "";
window.instructSetLock = false;
await instructSet({ ...params });
};
const handleOk = () => {
handleExecInstructSet({
...props,
btnConfig: props.reportRef || {},
[`${nameCrew}Data`]: selectData(),
[`${nameCrew}DelData`]: [],
[`${nameCrew}Config`]: queryFormData[1],
}).then(() => {
cancelCache();
})
}
const cancelCache = () => {
props.onSaveState({
[`${namePost}Data`]: [],
[`${namePost}DelData`]: [],
[`${namePost}SelectedRowKeys`]: [],
[`${nameCrew}Data`]: [],
[`${nameCrew}DelData`]: [],
[`${nameCrew}SelectedRowKeys`]: []
})
props.handleReportInfo();
}
return (
<Modal
title={props.reportRef?.sDefault || ""}
open={props.reportInfoVisible}
width="65%"
onCancel={cancelCache}
maskClosable={false}
className="mesCommonModal"
footer={
<Space>
<Button size="large" onClick={cancelCache}>
取消
</Button>
<Button size="large" type="primary" onClick={handleOk}>
确定
</Button>
</Space>
}
>
<Row gutter={[16, 0]}>
<Col span={8} flex={1} >
<StaticEditTable {...tablePropsPost} />
</Col>
<Col span={8} flex={1} >
<StaticEditTable {...tablePropsCrew} />
</Col>
<Col span={8} flex={1} >
<StaticEditTable {...tablePropsCollect} />
</Col>
</Row>
</Modal>
);
};