index.js
13.8 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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import React, { useEffect, useRef, useState } from "react";
import moment from "moment";
import { cloneDeep } from "lodash";
import { Button, Space, DatePicker } from "antd";
import * as commonUtils from "@/utils/utils";
import * as commonFunc from "@/components/Common/commonFunc";
import * as commonBusiness from "@/components/Common/commonBusiness";
import useCommonBase from "@/components/Common/CommonHooks/useCommonBase";
import StaticEditTable from "@/components/Common/CommonTable";
import CommonViewTable from "@/components/Common/CommonViewTable";
import RunningStatus from "@/mes/common/RunningStatus";
import ReportInfo from "@/mes/productionExec/noticeModal/reportInfoButton";
import styles from "./index.less";
// salve0 -> 报工任务 slave1 -> 行车状态 slave2 -> 提报信息
const tableList = ["slave0", "slave1", "slave2"];
const useAbnormalEventReportingEvent = props => {
const { formData = [] } = props;
// 初始化事件
useEffect(
async () => {
if (commonUtils.isNotEmptyArr(formData)) {
let addState = {};
const colunmData = handleGetColumnData(tableList, true);
const result = await handleGetData(tableList, true);
addState = {
...addState,
...colunmData,
...result,
bFinish: 1
};
props.onSaveState(addState);
}
},
[formData.length]
);
// 获取表头数据
const handleGetColumnData = (tableList = [], isWait) => {
let addState = {};
for (let i = 0; i < tableList.length; i++) {
const tableName = tableList[i];
const config = formData.find(item => item.sGrd === tableName);
if (!config) continue;
const column = commonFunc.getHeaderConfig(config);
addState = {
...addState,
[`${tableName}Column`]: column,
[`${tableName}Config`]: config
};
}
if (isWait) {
return addState;
} else {
props.onSaveState(addState);
}
};
// 获取数据集
const handleGetData = async (tableList = [], isWait) => {
let addState = {};
for (let i = 0; i < tableList.length; i++) {
const tableName = tableList[i];
const config = formData.find(item => item.sGrd === tableName);
if (!config) continue;
const conditonValues = props.onGetSqlConditionValues(config);
// 行车记录新增时间、白夜班条件
if (tableName === "slave0") {
// 判断当前时间是否小于上午8点,如果是,则默认为昨天
const now = moment();
const today8AM = moment()
.hour(8)
.minute(0)
.second(0)
.millisecond(0);
const isBefore8AM = now.isSameOrBefore(today8AM);
const {
runningTime = isBefore8AM
? now.subtract(1, "days").format("YYYY-MM-DD")
: now.format("YYYY-MM-DD")
} = props;
conditonValues.tCreateTime = runningTime;
}
const iSort =
props.app?.userinfo?.sWorkshopId === "20240511102738235320239993832437"
? 1
: 0;
const result =
(await props.onGetDataSet({
name: tableName,
configData: config,
condition: {
sSqlCondition: { ...conditonValues, iSort }
},
isWait: true
})) || {};
props.setTempRef(result);
if (tableName?.includes("master")) {
const masterData = result[`${tableName}Data`];
result[`${tableName}Data`] = masterData?.[0] || {};
} else {
// 如果选中的数据不在返回的数据中,则清空选中数据
const { [`${tableName}Data`]: tableData = [] } = result;
const { [`${tableName}SelectedRowKeys`]: selectedRowKeys = [] } = props;
if (selectedRowKeys.length) {
const selectedRowKeysNew = selectedRowKeys.filter(item =>
tableData.some(rowData =>
[rowData.sId, rowData.sSlaveId].includes(item)
)
);
result[`${tableName}SelectedRowKeys`] = selectedRowKeysNew;
}
}
// 如果配置了默认选中第一行,则默认选中第一行,刷新数据集时配置NotFirstlineSelected则不刷新
let bNotFirstlineSelected =
tableList.findIndex(
item => item === `${tableName}NotFirstlineSelected`
) > -1;
if (!bNotFirstlineSelected) {
// 如果配置了默认选中第一行,则默认选中第一行
let bFirstlineSelected = config.gdsconfigformslave.find(
item => item.sControlName === "bFirstlineSelected" && item.bVisible
);
// 配置刷新数据时,配置 数据集名称+FirstlineSelected,默认选中首行数据。
if (!bFirstlineSelected) {
bFirstlineSelected =
tableList.findIndex(
item => item === `${tableName}FirstlineSelected`
) > -1;
}
if (bFirstlineSelected) {
if (commonUtils.isNotEmptyObject(result[`${tableName}Data`])) {
result[`${tableName}SelectedRowKeys`] = [
result[`${tableName}Data`][0].sId
];
result.triggerClickTableList = result.triggerClickTableList || [];
result.triggerClickTableList.push(tableName);
}
}
}
addState = { ...addState, ...result };
}
props.setTempRef({}, true);
if (isWait) {
return addState;
} else {
props.onSaveState(addState);
}
};
const handleBtnClick = config => {
const { sButtonParam, sInstruct } = config;
// 调用指令集
if (sInstruct) {
props.onExecInstructSet({
...props,
btnConfig: config,
callback: () => {
const slave2RowData = {
handleType: "add",
sId: commonUtils.createSid()
};
props.onSaveState({
slave2Data: [slave2RowData]
});
}
});
return;
}
// 调用存储过程
if (sButtonParam) {
handleProcedureCall(config);
}
};
// 调用存储过程
const handleProcedureCall = config => {
props.onProcedureCall({
btnConfig: config,
onSuccess: () => {
props.onRefresh && props.onRefresh();
},
onConfirm: () => {},
onError: () => {}
});
};
// 刷新指定表格
const { refreshTableList = [] } = props;
useEffect(
async () => {
if (!refreshTableList.length) return;
if (refreshTableList.includes("slave")) {
window.refreshTableList = ["slave"];
}
const refreshTableListNew = refreshTableList.filter(
item => item !== "slave"
);
if (!refreshTableListNew.length) {
props.onSaveState({ refreshTableList: [] });
return;
}
let addState = {
refreshTableList: [],
...(await handleGetData(refreshTableListNew, true))
};
if (props.runningStatusConditionFlag) {
addState = {
...addState,
runningStatusConditionFlag: undefined,
slave0SelectedRowKeys: [],
slave2Data: []
};
}
props.onSaveState(addState, nextProps => {
if (window.rowclickAfterFunc) {
window.rowclickAfterFunc(nextProps);
window.rowclickAfterFunc = null;
}
});
},
[refreshTableList.length]
);
return {
...props,
onBtnClick: handleBtnClick
};
};
const AbnormalEventReporting = baseProps => {
const props = useAbnormalEventReportingEvent(useCommonBase(baseProps));
return (
<div className={styles.abnormalEventReporting}>
<LeftPartComponent {...props} />
<RightPartComponent {...props} />
</div>
);
};
const LeftPartComponent = props => {
const tableName = "slave0";
const baseProps = commonBusiness.getTableTypes(tableName, props);
if (tableName === "slave0") {
baseProps.allowClear = false;
}
const { data = [] } = baseProps;
useEffect(
() => {
if (!data.length) return;
// 让第一条选中
props.onTableSelectRowChange(tableName, [data[0].sId]);
props.onSaveState({
[`${tableName}SelectedRowKeys`]: [data[0].sAbnormalEventId]
});
},
[!!data.length]
);
const { [`${tableName}SelectedRowKeys`]: selectedRowKeys = [] } = props;
const [selectedRowKey = ""] = selectedRowKeys;
useEffect(
() => {
if (!selectedRowKey) return;
props.onSaveState({
refreshTableList: ["slave2"]
});
},
[selectedRowKey]
);
const tableProps = {
...baseProps,
fixedHeight: "calc(100% - 50px)"
};
return (
<div className={styles.leftPart}>
<RunningStatusConditionComponent {...props} />
<StaticEditTable {...tableProps} />
</div>
);
};
const RightPartComponent = props => {
const [reportInfoVisible, setReportInfoVisible] = useState(false);
const reportRef = useRef(null);
const handleReportInfo = (config = null) => {
reportRef.current = config;
setReportInfoVisible(!reportInfoVisible);
};
const tableName = "slave2";
const { config: configOld, data = [] } = commonBusiness.getTableTypes(
tableName,
props
);
const config = props.onMergeTableConfig(configOld);
const viewConfigsOld = config?.gdsconfigformslave?.filter(
item =>
item.sName &&
item.bControl &&
item.sControlName.indexOf("Btn") === -1 &&
item.sControlName.indexOf("_") === -1
);
const viewConfigs = cloneDeep(viewConfigsOld);
// const iIndex =
// viewConfigs?.findIndex(item => item.sName === "bRepairRequest") || -1;
// if (iIndex !== -1 && !data[0]?.sAbnormalStatusName?.startsWith("W")) {
// viewConfigs[iIndex].iTag = 1;
// }
const slave0SelectedRowKeys = props.slave0SelectedRowKeys || [];
const viewRow = slave0SelectedRowKeys.length
? props.slave0Data?.filter(item =>
slave0SelectedRowKeys.includes(item.sId)
)[0]
: {};
const viewProps = {
...props,
viewConfigs,
tableConfig: config,
iColValueView: 24,
viewRow: data[0],
tableName,
enabled: false,
handleReportInfo
};
if (commonUtils.isEmptyObject(viewRow) || viewRow.bUnChanged) {
viewProps.enabledCostom = false;
}
const btnConfig = config?.gdsconfigformslave?.find(
item => item.sControlName === "BtnRight.confim"
);
const btnProps = {
type: "primary",
size: "large",
// disabled: !(viewRow?.bSaveAbnormal == 0),
onClick: props.onBtnClick.bind(this, btnConfig)
};
const runningStatusProps = {
...props,
bNotModal: true,
tableName: "slave1",
viewRow,
onChange: (rowData, nextProps) => {
// 如果配置了指令集,调用指令集
const btnConfig = props[
`${runningStatusProps.tableName}Config`
]?.gdsconfigformslave?.find(item => item.sControlName === "clickOpr");
if (btnConfig) {
props.onExecInstructSet({
btnConfig,
tableLineParams: {
name: runningStatusProps.tableName,
record: rowData
},
nextProps
});
}
// const iIndex = props.slave0Data.findIndex(
// item => item.sId === slave0SelectedRowKeys[0]
// );
// const newData = [...props.slave0Data];
// newData[iIndex] = {
// ...newData[iIndex],
// sAbClassifyName: rowData.sClassifyName1,
// sAbClassifycode: rowData.sClassifyName,
// sAbsStatusName: rowData.sStatusName
// };
// props.onSaveState(
// {
// slave0Data: newData
// },
// () => {
// // 如果配置了指令集,调用指令集
// const btnConfig = props[
// `${runningStatusProps.tableName}Config`
// ]?.gdsconfigformslave?.find(item => item.sControlName === "clickOpr");
// if (btnConfig) {
// props.onExecInstructSet({
// btnConfig,
// tableLineParams: {
// name: runningStatusProps.tableName,
// record: rowData
// }
// });
// }
// }
// );
}
};
return (
<div className={styles.rightPart}>
<div className={styles.runningStatus}>
<RunningStatus {...runningStatusProps} />
</div>
<div className={styles.runningForm}>
<CommonViewTable {...viewProps} />
<ReportInfo
reportInfoVisible={reportInfoVisible}
handleReportInfo={handleReportInfo}
{...props}
reportRef={reportRef.current || {}}
hasShowInfo={viewProps.viewRow}
/>
</div>
<div className={styles.runningBtn}>
<Button {...btnProps}>提报</Button>
</div>
</div>
);
};
// (定制功能)行车记录 条件
const RunningStatusConditionComponent = props => {
const { runningTime } = props;
// 判断当前时间是否小于上午8点,如果是,则默认为昨天
const now = moment();
const today8AM = moment()
.hour(8)
.minute(0)
.second(0)
.millisecond(0);
const isBefore8AM = now.isSameOrBefore(today8AM);
const [dateValue, setDateValue] = useState(
runningTime
? moment(runningTime)
: isBefore8AM
? now.subtract(1, "days")
: now
);
const flag = useRef(false);
useEffect(
() => {
if (flag.current) {
flag.current = false;
props.onSaveState({
runningTime: dateValue.format("YYYY-MM-DD"),
refreshTableList: ["slave0"],
runningStatusConditionFlag: true // 行车记录修改时间标记
});
}
},
[dateValue]
);
return (
<div className="tabTitle">
<div className={styles.runningStatusCondition}>
<Space size={15}>
<DatePicker
value={dateValue}
format="YYYY-MM-DD"
allowClear={false}
onChange={mDate => {
flag.current = true;
setDateValue(mDate);
}}
size="large"
/>
</Space>
</div>
</div>
);
};
export default AbnormalEventReporting;