Bläddra i källkod

移除无效开关

seimin 2 månader sedan
förälder
incheckning
8ff8350e8f

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

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