|
@@ -72,8 +72,38 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
72
|
72
|
batchSignEndDept:any[] = [
|
73
|
73
|
{label:'是否开启',value: 0}
|
74
|
74
|
];
|
|
75
|
+ // 执行中-支持父子集科室同签
|
|
76
|
+ batchSignExecutionParent:any[] = [
|
|
77
|
+ {label:'是否开启',value: 0}
|
|
78
|
+ ];
|
|
79
|
+ // 终点-支持父子集科室同签
|
|
80
|
+ batchSignEndParent:any[] = [
|
|
81
|
+ {label:'是否开启',value: 0}
|
|
82
|
+ ];
|
|
83
|
+ // 隐藏陪检小扫描
|
|
84
|
+ hideInspectScan:any[] = [
|
|
85
|
+ {label:'是否开启',value: 0}
|
|
86
|
+ ];
|
|
87
|
+ // 检查预约不进行工单合并
|
|
88
|
+ yyInspectMergeOrder:any[] = [
|
|
89
|
+ {label:'是否开启',value: 0}
|
|
90
|
+ ];
|
75
|
91
|
|
|
92
|
+ changeBatchSignExecutionDept(e){
|
|
93
|
+ if(!e[0].checked){
|
|
94
|
+ this.batchSignExecutionParent = [
|
|
95
|
+ {label:'是否开启',value: 0}
|
|
96
|
+ ];
|
|
97
|
+ }
|
|
98
|
+ }
|
76
|
99
|
|
|
100
|
+ changeBatchSignEndDept(e){
|
|
101
|
+ if(!e[0].checked){
|
|
102
|
+ this.batchSignEndParent = [
|
|
103
|
+ {label:'是否开启',value: 0}
|
|
104
|
+ ];
|
|
105
|
+ }
|
|
106
|
+ }
|
77
|
107
|
|
78
|
108
|
timeMod:any;
|
79
|
109
|
// 交接方式
|
|
@@ -249,6 +279,10 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
249
|
279
|
batchCreationAndReturn: this.batchCreationAndReturn[0].checked ? 1 : 0,
|
250
|
280
|
batchSignExecutionDept: this.batchSignExecutionDept[0].checked ? 1 : 0,
|
251
|
281
|
batchSignEndDept: this.batchSignEndDept[0].checked ? 1 : 0,
|
|
282
|
+ batchSignExecutionParent: this.batchSignExecutionParent[0].checked ? 1 : 0,
|
|
283
|
+ batchSignEndParent: this.batchSignEndParent[0].checked ? 1 : 0,
|
|
284
|
+ hideInspectScan: this.hideInspectScan[0].checked ? 1 : 0,
|
|
285
|
+ yyInspectMergeOrder: this.yyInspectMergeOrder[0].checked ? 1 : 0,
|
252
|
286
|
addService: this.addService[0].checked ? 1 : 0,
|
253
|
287
|
addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
|
254
|
288
|
|
|
@@ -373,6 +407,10 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
373
|
407
|
this.batchCreationAndReturn[0].checked = this.configs.batchCreationAndReturn == 1;
|
374
|
408
|
this.batchSignExecutionDept[0].checked = this.configs.batchSignExecutionDept == 1;
|
375
|
409
|
this.batchSignEndDept[0].checked = this.configs.batchSignEndDept == 1;
|
|
410
|
+ this.batchSignExecutionParent[0].checked = this.configs.batchSignExecutionParent == 1;
|
|
411
|
+ this.batchSignEndParent[0].checked = this.configs.batchSignEndParent == 1;
|
|
412
|
+ this.hideInspectScan[0].checked = this.configs.hideInspectScan == 1;
|
|
413
|
+ this.yyInspectMergeOrder[0].checked = this.configs.yyInspectMergeOrder == 1;
|
376
|
414
|
this.addService[0].checked = this.configs.addService == 1;
|
377
|
415
|
this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
|
378
|
416
|
|