|
@@ -85,9 +85,9 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
85
|
85
|
{label:'是否开启',value: 0}
|
86
|
86
|
];
|
87
|
87
|
// 检查预约不进行工单合并
|
88
|
|
- yyInspectMergeOrder:any[] = [
|
89
|
|
- {label:'是否开启',value: 0}
|
90
|
|
- ];
|
|
88
|
+ // yyInspectMergeOrder:any[] = [
|
|
89
|
+ // {label:'是否开启',value: 0}
|
|
90
|
+ // ];
|
91
|
91
|
|
92
|
92
|
changeBatchSignExecutionDept(e){
|
93
|
93
|
if(!e[0].checked){
|
|
@@ -282,7 +282,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
282
|
282
|
batchSignExecutionParent: this.batchSignExecutionParent[0].checked ? 1 : 0,
|
283
|
283
|
batchSignEndParent: this.batchSignEndParent[0].checked ? 1 : 0,
|
284
|
284
|
hideInspectScan: this.hideInspectScan[0].checked ? 1 : 0,
|
285
|
|
- yyInspectMergeOrder: this.yyInspectMergeOrder[0].checked ? 1 : 0,
|
|
285
|
+ // yyInspectMergeOrder: this.yyInspectMergeOrder[0].checked ? 1 : 0,
|
286
|
286
|
addService: this.addService[0].checked ? 1 : 0,
|
287
|
287
|
addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
|
288
|
288
|
|
|
@@ -410,7 +410,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
410
|
410
|
this.batchSignExecutionParent[0].checked = this.configs.batchSignExecutionParent == 1;
|
411
|
411
|
this.batchSignEndParent[0].checked = this.configs.batchSignEndParent == 1;
|
412
|
412
|
this.hideInspectScan[0].checked = this.configs.hideInspectScan == 1;
|
413
|
|
- this.yyInspectMergeOrder[0].checked = this.configs.yyInspectMergeOrder == 1;
|
|
413
|
+ // this.yyInspectMergeOrder[0].checked = this.configs.yyInspectMergeOrder == 1;
|
414
|
414
|
this.addService[0].checked = this.configs.addService == 1;
|
415
|
415
|
this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
|
416
|
416
|
|