Browse Source

移除无效开关

seimin 2 months ago
parent
commit
8ff8350e8f

+ 2 - 2
src/app/views/inspect-and-patient-transport-config/inspect-and-patient-transport-config.component.html

@@ -148,10 +148,10 @@
148
           <nz-checkbox-group [(ngModel)]="hideInspectScan"></nz-checkbox-group>
148
           <nz-checkbox-group [(ngModel)]="hideInspectScan"></nz-checkbox-group>
149
         </div>
149
         </div>
150
         <!-- 检查预约不进行工单合并 -->
150
         <!-- 检查预约不进行工单合并 -->
151
-        <div class="display_flex align-items_center mb8">
151
+        <!-- <div class="display_flex align-items_center mb8">
152
           <nz-form-label class="label">检查预约不进行工单合并</nz-form-label>
152
           <nz-form-label class="label">检查预约不进行工单合并</nz-form-label>
153
           <nz-checkbox-group [(ngModel)]="yyInspectMergeOrder"></nz-checkbox-group>
153
           <nz-checkbox-group [(ngModel)]="yyInspectMergeOrder"></nz-checkbox-group>
154
-        </div>
154
+        </div> -->
155
 
155
 
156
         <!-- 自动关单 -->
156
         <!-- 自动关单 -->
157
         <!-- <div class="display_flex align-items_center mb8">
157
         <!-- <div class="display_flex align-items_center mb8">

+ 5 - 5
src/app/views/inspect-and-patient-transport-config/inspect-and-patient-transport-config.component.ts

@@ -85,9 +85,9 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
85
     {label:'是否开启',value: 0}
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
   changeBatchSignExecutionDept(e){
92
   changeBatchSignExecutionDept(e){
93
     if(!e[0].checked){
93
     if(!e[0].checked){
@@ -282,7 +282,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
282
       batchSignExecutionParent: this.batchSignExecutionParent[0].checked ? 1 : 0,
282
       batchSignExecutionParent: this.batchSignExecutionParent[0].checked ? 1 : 0,
283
       batchSignEndParent: this.batchSignEndParent[0].checked ? 1 : 0,
283
       batchSignEndParent: this.batchSignEndParent[0].checked ? 1 : 0,
284
       hideInspectScan: this.hideInspectScan[0].checked ? 1 : 0,
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
       addService: this.addService[0].checked ? 1 : 0,
286
       addService: this.addService[0].checked ? 1 : 0,
287
       addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
287
       addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
288
 
288
 
@@ -410,7 +410,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
410
           this.batchSignExecutionParent[0].checked = this.configs.batchSignExecutionParent == 1;
410
           this.batchSignExecutionParent[0].checked = this.configs.batchSignExecutionParent == 1;
411
           this.batchSignEndParent[0].checked = this.configs.batchSignEndParent == 1;
411
           this.batchSignEndParent[0].checked = this.configs.batchSignEndParent == 1;
412
           this.hideInspectScan[0].checked = this.configs.hideInspectScan == 1;
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
           this.addService[0].checked = this.configs.addService == 1;
414
           this.addService[0].checked = this.configs.addService == 1;
415
           this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
415
           this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
416
 
416