index.js
22 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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
/*
* @Author: Sakura
* @LastEditors: Sakura
* @Date: 2024-02-28 9:55:04
* @Description: 设备状态组件
*/
import React, { useRef, useEffect, useState } from "react";
import { Button, message } from "antd";
import * as commonFunc from "@/components/Common/commonFunc";
import * as commonUtils from "@/utils/utils";
import useCommonBase from "@/components/Common/CommonHooks/useCommonBase";
import * as commonBusiness from "@/components/Common/commonBusiness";
import CommonViewTable from "@/components/Common/CommonViewTable";
import ShowType from "@/components/Common/CommonComponent";
import ReportInfo from "@/mes/productionExec/noticeModal/reportInfoButton";
import styles from "./index.less";
import { cloneDeep } from "lodash";
const sTypeJson = {
sType1: ["行车状态", "green", "greenTd"],
sType2: ["正常待机", "cyan", "cyanTd"],
sType3: ["不正常待机(材料异常)", "red", "redTd"],
sType4: ["不正常待机(工艺异常)", "red", "redTd"],
sType5: ["不正常待机(制程异常)", "red", "redTd"],
sType6: ["不正常待机(其它类型)(协助类)", "red", "redTd"],
sType7: ["不正常待机", "red", "redTd"],
sType8: ["设备保养(协助类)", "blue", "blueTd"],
sType9: ["设备维修", "blue", "blueTd"],
sType10: ["设备保养", "blue", "blueTd"],
sType11: ["材料异常", "red", "redTd"],
sType12: ["工艺异常", "red", "redTd"],
sType13: ["其他异常", "red", "redTd"],
sType14: ["设备异常", "red", "redTd"],
sType15: ["其他类型", "blue", "blueTd"],
sType16: ["制程异常", "red", "red"],
"": ["其它", "blue", "blueTd"]
};
// 业务层
const businessTier = props => {
const { formData = [], copyTo = {} } = props;
useEffect(
async () => {
if (commonUtils.isNotEmptyArr(formData)) {
const colunmData = handleGetColumnData(formData, true);
const result = await handleGetData(formData, true);
const addState = {
...colunmData,
...result
};
Object.keys(copyTo).forEach(key => {
addState[`${key}Data`] = copyTo[key];
});
props.onSaveState(addState);
}
},
[formData.length]
);
// 获取表头数据
const handleGetColumnData = (formData = [], isWait) => {
let addState = {};
for (let i = 0; i < formData.length; i++) {
const config = formData[i];
const column = commonFunc.getHeaderConfig(config);
if (i === 1) {
addState.slave2Data = [{ sId: commonUtils.createSid() }];
}
addState = {
...addState,
[`slave${i > 0 ? i + 1 : i}Column`]: column,
[`slave${i > 0 ? i + 1 : i}Config`]: config
};
}
if (isWait) {
return addState;
} else {
props.onSaveState(addState);
}
};
// 获取数据集
const handleGetData = async (formData = [], isWait) => {
let addState = {};
for (let i = 0; i < formData.length; i++) {
const config = formData[i];
const conditonValues = props.onGetSqlConditionValues(config);
const iSort =
props.app?.userinfo?.sWorkshopId === "20240511102738235320239993832437"
? 1
: 0;
const result =
(await props.onGetDataSet({
name: `slave${i}`,
configData: config,
condition: { sSqlCondition: { ...conditonValues, iSort } },
isWait: true
})) || {};
props.setTempRef(result);
addState = { ...addState, ...result };
}
props.setTempRef({}, true);
if (isWait) {
return addState;
} else {
props.onSaveState(addState);
}
};
return {
...props
// 其他对象
};
};
// 弹窗
const RunningStatusModal = _props => {
const { bNotModal } = _props;
// 如果不是弹窗(异常事件提报用)
if (bNotModal) return RunningStatus(_props);
const props = businessTier(useCommonBase({ ..._props }));
const tableName = "slave0";
const {
[`${tableName}Data`]: tableData = [],
[`${tableName}SelectedRowKeys`]: selectedRowKeys = [],
[`${tableName}Config`]: config = {}
} = props;
// 按sClassifyName分组
const list = [];
tableData.forEach(rowData => {
const { sClassifyName } = rowData;
const iIndex = list.findIndex(item => item.sClassifyName === sClassifyName);
if (iIndex === -1) {
list.push({ sClassifyName, group: [rowData] });
} else {
list[iIndex].group.push(rowData);
}
});
// 把sClassifyName为空的放到最后
const iIndex = list.findIndex(item => item.sClassifyName === "");
if (iIndex !== -1) {
const element = list.splice(iIndex, 1)[0];
list.push(element);
}
const contentProps = {
...props,
bModal: true,
dataList: list,
selectedRowKeys,
onTdClick: data => {
if (!data) return;
const { sId } = data;
const addState = {
[`${tableName}SelectedRowKeys`]: [sId],
table1SelectedRowKeys: [sId],
table1Data: [data],
slave1SelectedRowKeys: [sId],
slave1Data: [data],
slave2Data: [{ sId: commonUtils.createSid() }]
};
props.onSaveState(addState, (nextProps) => {
// 如果配置了指令集,调用指令集
const btnConfig = props[
`${tableName}Config`
]?.gdsconfigformslave?.find(item => item.sControlName === "clickOpr");
if (btnConfig) {
props.onExecInstructSet({
btnConfig,
tableLineParams: {
name: tableName,
record: data
},
nextProps
});
}
});
}
};
const [record, setRecord] = useState({});
const [loading, setLoading] = useState(false);
const bXingchejiluClick = () => {
const { table1Data = [], slave2Data = [] } = props;
const { tableS1Data = [], tableS1SelectedRowKeys = [] } = props.parentProps;
const rowData1 = { ...table1Data[0], ...slave2Data[0], ...record };
const rowData2 = tableS1Data.find(
item => item.sId === tableS1SelectedRowKeys[0]
);
props.onExecInstructSet({
nextProps: {
...props.parentProps,
temp0Data: [
{
sId: rowData2.sId,
tStartDate: rowData1.tStartDate,
tEndDate: rowData1.tEndDate,
sAbnormalEventId: rowData1.sId
}
]
},
btnConfig: {
showName: "保存",
sInstruct: JSON.stringify([
{
opr: "procedure",
config: {
sproName: "sp_mes_SetMachineDateStatusCode",
inMap:
"temp0.sId,temp0.tStartDate,temp0.tEndDate,temp0.sAbnormalEventId"
}
}
])
},
callback: () => {
props.parentProps.onSaveState({ refreshTableList: ["tableS5"] });
props.app.globalFun.onCloseCommonModal({ type: "commonModal" });
}
});
};
const deviceTargetInfoClick = () => {
const config = props.parentProps?.deviceTargetInfoConfig?.gdsconfigformslave?.find(
item => item.sName === "sStatusNameSetting"
);
if (config) {
const { table1Data = [], slave2Data = [] } = props;
setLoading(true);
setTimeout(() => {
props.onTableBtnClick({
name: "table1",
record: { ...table1Data[0], ...slave2Data[0] },
config,
onSuccess: () => {
props.parentProps.onSaveState({ refreshDeviceTargetInfo: true });
props.app.globalFun.onCloseCommonModal({ type: "commonModal" });
}
});
}, 100);
} else {
message.info("请先配置sStatusNameSetting!");
}
};
const btnProps = {
className: styles.settingBtn,
type: "primary",
size: "large",
disabled: loading,
onClick: () => {
if (commonUtils.isEmptyArr(selectedRowKeys)) {
message.warning("请先选择一个状态!");
return;
}
if (!commonBusiness.validateTable(props.slave2Config, props.slave2Data, props)) {
return;
}
if (window.bXingchejiluModal) {
bXingchejiluClick();
return;
}
if (window.deviceTargetInfoModal) {
deviceTargetInfoClick();
return;
}
const bNotCheck = props.parentProps.table0Data === undefined;
const parentTable0Data = cloneDeep(
!bNotCheck ? props.parentProps.table0Data : props.parentProps.slaveData
);
const iIndex = parentTable0Data.findIndex(
item => item.sId === props.table0Data[0].sId
);
if (iIndex === -1) {
message.error("操作失败");
props.modalCallback({ closeModal: true });
return;
}
const { table1Data } = props;
const {
sId: sAbnormalEventId,
sClassifyName,
sName: sCode,
sStatusName
} = table1Data[0];
if (!bNotCheck) {
if (
(parentTable0Data[iIndex].sPlcMachineStatusName === "运行" &&
sClassifyName !== "sType1") ||
(parentTable0Data[iIndex].sPlcMachineStatusName !== "运行" &&
sClassifyName === "sType1")
) {
message.error("行车状态与当前选择不匹配,请重新选择!");
return;
}
}
parentTable0Data[iIndex].sAbnormalEventId = sAbnormalEventId;
parentTable0Data[iIndex].sClassifyName = sClassifyName;
parentTable0Data[iIndex].sCode = sCode;
parentTable0Data[iIndex].sStatusName = sStatusName;
parentTable0Data[iIndex].handleType =
parentTable0Data[iIndex].handleType || "update";
if (parentTable0Data[iIndex].bUnChanged) {
}
if (!bNotCheck) {
props.parentProps.onSaveState(
{
table0Data: parentTable0Data
},
nextProps => {
if (parentTable0Data[iIndex].bUnChanged) {
props.modalCallback({ closeModal: true });
} else {
props.onExecInstructSet({
nextProps: nextProps,
btnConfig: {
showName: "保存",
sInstruct: JSON.stringify([
{
opr: "save",
doNotRefresh: true,
data: [
{
tablename: "mftproductionreportslave",
srcDataset: "table0"
}
]
}
])
},
callback: () => {
props.modalCallback({ closeModal: true });
}
});
}
}
);
} else {
props.onExecInstructSet({
nextProps: { ...props.parentProps, slaveData: parentTable0Data },
btnConfig: {
showName: "保存",
sInstruct: JSON.stringify([
{
opr: "save",
data: [
{
tablename: "mftAbnormalEventReportMaster",
srcDataset: "slave"
}
]
}
])
},
callback: () => {
props.modalCallback({ closeModal: true });
}
});
}
// const btnConfig = config?.gdsconfigformslave?.find(
// item => item.sControlName === "BtnSetting"
// );
// props.onExecInstructSet({
// btnConfig,
// callback: () => {
// props.modalCallback({ refreshTable: true, closeModal: true });
// }
// });
}
};
let TimeComponent = "";
if (window.bXingchejiluModal) {
const showTypeProps = {
app: props.app,
getFloatNum: props.getFloatNum,
getDateFormat: props.getDateFormat,
iColValue: 12,
name: tableName,
showConfig: {
showName: "开始时间",
sName: "tStartDate",
costomStyle: styles.noBorderRight,
sDateFormat: "YYYY-MM-DD HH:mm"
},
record,
sId: commonUtils.createSid(),
textArea: true,
enabled: true,
dataValue: record.tStartDate,
bTable: true,
bViewTable: true,
onChange: (...args) => {
setRecord(pre => ({ ...pre, ...args[2] }));
// if (table1Data.length) {
// props.onSaveState({ table1Data: [{ sMemo: args[2].dataValue }] });
// }
}
};
const showTypeProps1 = {
app: props.app,
getFloatNum: props.getFloatNum,
getDateFormat: props.getDateFormat,
iColValue: 12,
name: tableName,
showConfig: {
showName: "结束时间",
sName: "tEndDate",
sDateFormat: "YYYY-MM-DD HH:mm"
},
record,
sId: commonUtils.createSid(),
textArea: true,
enabled: true,
dataValue: record.tEndDate,
bTable: true,
bViewTable: true,
onChange: (...args) => {
setRecord(pre => ({ ...pre, ...args[2] }));
// if (table1Data.length) {
// props.onSaveState({ table1Data: [{ sMemo: args[2].dataValue }] });
// }
}
};
TimeComponent = (
<div className={styles.showType}>
<ShowType {...showTypeProps} />
<ShowType {...showTypeProps1} />
</div>
);
}
const [reportInfoVisible, setReportInfoVisible] = useState(false);
const reportRef = useRef(null);
const handleReportInfo = (config = null) => {
reportRef.current = config;
setReportInfoVisible(!reportInfoVisible);
};
const { slave2Config: slave2ConfigOld, slave2Data = [] } = props;
const slave2Config = props.onMergeTableConfig(slave2ConfigOld);
const viewConfigsOld = slave2Config?.gdsconfigformslave?.filter(
item =>
item.sName &&
item.bControl &&
item.sControlName.indexOf("Btn") === -1 &&
item.sControlName.indexOf("_") === -1
);
const viewConfigs = cloneDeep(viewConfigsOld);
const iIndex1 =
viewConfigs?.findIndex(item => item.sName === "bRepairRequest") || -1;
if (iIndex1 !== -1 && !slave2Data[0]?.sAbnormalStatusName?.startsWith("W")) {
viewConfigs[iIndex1].iTag = 1;
}
const viewProps = {
...props,
viewConfigs,
tableConfig: slave2Config,
iColValueView: 24,
viewRow: slave2Data[0],
tableName: 'slave2',
enabled: true,
handleReportInfo
};
return (
<div className={styles.runningContent}>
<RunningContent {...contentProps} />
{TimeComponent}
<div className={styles.runningForm}>
<CommonViewTable {...viewProps} />
<ReportInfo
reportInfoVisible={reportInfoVisible}
handleReportInfo={handleReportInfo}
{...props}
reportRef={reportRef.current || {}}
hasShowInfo={viewProps.viewRow}
/>
</div>
<Button {...btnProps}>
{window.deviceTargetInfoModal ? "确定" : "设置"}
</Button>
</div>
);
};
// 非弹窗
const RunningStatus = props => {
const { tableName, viewRow = {} } = props;
const {
[`${tableName}Data`]: tableData = [],
[`${tableName}SelectedRowKeys`]: selectedRowKeys = []
} = props;
// 按sClassifyName分组
const list = [];
tableData.forEach(rowData => {
const { sClassifyName } = rowData;
const iIndex = list.findIndex(item => item.sClassifyName === sClassifyName);
if (iIndex === -1) {
list.push({ sClassifyName, group: [rowData] });
} else {
list[iIndex].group.push(rowData);
}
});
// 把sClassifyName为空的放到最后
const iIndex = list.findIndex(item => item.sClassifyName === "");
if (iIndex !== -1) {
const element = list.splice(iIndex, 1)[0];
list.push(element);
}
const { sAbClassifycode, sAbsStatusName } = viewRow;
// 根据sAbClassifycode、sAbsStatusName设置选中数据
useEffect(
() => {
const selectData = tableData.find(
item =>
item.sClassifyName === sAbClassifycode &&
item.sStatusName === sAbsStatusName
);
if (selectData) {
props.onSaveState({
[`${tableName}SelectedRowKeys`]: [selectData.sId]
});
} else {
props.onSaveState({ [`${tableName}SelectedRowKeys`]: [] });
}
},
[sAbClassifycode, sAbsStatusName, tableData.length]
);
const contentProps = {
...props,
dataList: list,
selectedRowKeys,
onTdClick: data => {
if (!data) return;
const { sPlcMachineStatusName, bUnChanged } = viewRow;
if (commonUtils.isEmptyObject(viewRow)) {
message.info("请先选择一条行车记录!", 3);
return;
}
if (viewRow.bSaveAbnormal) {
return;
}
if (bUnChanged) {
message.info("请先填写新增行车记录的结束时间!", 3);
return;
}
// if (sPlcMachineStatusName === "运行" && data.sClassifyName !== "sType1") {
// message.info("设备状态为【运行】时只能选择【行车状态行】!", 3);
// return;
// }
// if (sPlcMachineStatusName !== "运行" && data.sClassifyName === "sType1") {
// message.info("设备状态非【运行】时不能选择【行车状态行】!", 3);
// return;
// }
const { sId } = data;
props.onSaveState(
{ [`${tableName}SelectedRowKeys`]: [sId] },
nextProps => {
props.onChange(data, nextProps);
}
);
}
};
return <RunningContent {...contentProps} />;
};
// 内容区域
const RunningContent = props => {
const [data, setData] = useState([]);
// 根据dataList拼接数据
const { dataList = [], selectedRowKeys = [] } = props;
useEffect(
() => {
if (!dataList.length) return;
const tempData = [];
dataList.filter(item => item.sClassifyName).forEach(item => {
const { sClassifyName, group } = item;
const rowspan = Math.ceil(group.length / 6);
for (let i = 0; i < rowspan; i++) {
const [title, className, classNameTd] = sTypeJson[sClassifyName];
const temp = {
title,
rowspan,
type: i === 0 ? 1 : 2,
className,
status: [
...group.filter((_, index) => index >= i * 6 && index < i * 6 + 6)
].map(rowData => {
const { sStatusName, sId, sResponsibilityType, sResponsibilityColor } = rowData;
const [name, status] = sStatusName.split(" ");
return {
name,
status,
className: selectedRowKeys.includes(sId) ? classNameTd : "",
rowData: { ...rowData, sClassifyName1: title },
// 添加停机原因字段
responsibilityType: sResponsibilityType || "",
responsibilityColor: sResponsibilityColor || ""
};
})
};
const statusSize = temp.status.length;
new Array(6 - statusSize).fill("").forEach(() => {
temp.status.push({});
});
tempData.push(temp);
}
});
setData(tempData);
},
[JSON.stringify(dataList), JSON.stringify(selectedRowKeys)]
);
// 计算停机原因的rowspan
const calculateResponsibilityRowspan = (data) => {
const rowspans = [];
const colors = []; // 存储每行的颜色
let currentValue = null;
let currentColor = null;
let currentCount = 0;
let startIndex = 0;
// 遍历所有行,计算连续的相同responsibilityType的行数
for (let i = 0; i < data.length; i++) {
const trData = data[i];
const responsibilityType = trData.status[0]?.responsibilityType || "";
const responsibilityColor = trData.status[0]?.responsibilityColor || "";
if (responsibilityType === currentValue) {
currentCount++;
} else {
// 处理前一段相同值
if (currentValue !== null) {
for (let j = startIndex; j < startIndex + currentCount; j++) {
rowspans[j] = j === startIndex ? currentCount : 0;
colors[j] = currentColor; // 设置颜色
}
}
// 开始新的计数
currentValue = responsibilityType;
currentColor = responsibilityColor;
currentCount = 1;
startIndex = i;
}
}
// 处理最后一段
if (currentValue !== null) {
for (let j = startIndex; j < startIndex + currentCount; j++) {
rowspans[j] = j === startIndex ? currentCount : 0;
colors[j] = currentColor; // 设置颜色
}
}
return { rowspans, colors };
};
const pattern = title => {
const regex = /(.+?)\((.+)\)/;
const result = title.match(regex);
if (result) {
return (
<div>
<p>{result[1]}</p>
<p>({result[2]})</p>
</div>
);
} else {
return title;
}
};
// 计算停机原因的rowspan数组和颜色数组
const { rowspans: responsibilityRowspans, colors: responsibilityColors } = calculateResponsibilityRowspan(data);
return (
<div
className={props.bModal ? styles.runStatusTable1 : styles.runStatusTable}
>
<table border={"1px"}>
{data.map((trData, trIndex) => (
<tr>
{/* 第一列:停机原因列 */}
{responsibilityRowspans[trIndex] > 0 && (
<td
className={`tdTitleContent ${trData.status[0]?.className || ""}`}
rowspan={responsibilityRowspans[trIndex]}
style={{
backgroundColor: responsibilityColors[trIndex] || 'transparent'
}}
>
<div>
<p>{trData.status[0]?.responsibilityType || ""}</p>
</div>
</td>
)}
{trData.type === 1 && (
<td
className={`${trData.className} tdTitle`}
rowspan={trData.rowspan}
>
<div>{pattern(trData.title)}</div>
</td>
)}
{trData.status.map(tdData => (
<td
className={`tdTitleContent ${tdData.className}`}
onClick={props.onTdClick.bind(this, tdData.rowData)}
>
<div>
<p>{tdData.name}</p>
<p>{tdData.status}</p>
</div>
</td>
))}
</tr>
))}
</table>
</div>
);
};
export default RunningStatusModal;