Browse Source

急诊患者是否第三方接入

seimin 11 months ago
parent
commit
e2e13090a4

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

@@ -111,6 +111,12 @@
111 111
           <nz-checkbox-group [(ngModel)]="isThirdOutpatient"></nz-checkbox-group>
112 112
         </div>
113 113
 
114
+        <!-- 急诊患者是否第三方接入 -->
115
+        <div class="display_flex align-items_center mb8">
116
+          <nz-form-label class="label">急诊患者是否第三方接入</nz-form-label>
117
+          <nz-checkbox-group [(ngModel)]="isThirdEmergencyPatient"></nz-checkbox-group>
118
+        </div>
119
+
114 120
         <!-- 自动关单 -->
115 121
         <!-- <div class="display_flex align-items_center mb8">
116 122
           <nz-form-label class="label">自动关单</nz-form-label>

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

@@ -54,6 +54,10 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
54 54
   isThirdOutpatient:any[] = [
55 55
     {label:'是否开启',value: 0}
56 56
   ];
57
+  // 急诊患者是否第三方接入
58
+  isThirdEmergencyPatient:any[] = [
59
+    {label:'是否开启',value: 0}
60
+  ];
57 61
 
58 62
 
59 63
   timeMod:any;
@@ -226,6 +230,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
226 230
       handoverOrder: this.handoverOrder[0].checked ? 1 : 0,
227 231
       finishService: this.finishService[0].checked ? 1 : 0,
228 232
       isThirdOutpatient: this.isThirdOutpatient[0].checked ? 1 : 0,
233
+      isThirdEmergencyPatient: this.isThirdEmergencyPatient[0].checked ? 1 : 0,
229 234
       addService: this.addService[0].checked ? 1 : 0,
230 235
       addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
231 236
 
@@ -346,6 +351,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
346 351
           this.handoverOrder[0].checked = this.configs.handoverOrder == 1;
347 352
           this.finishService[0].checked = this.configs.finishService == 1;
348 353
           this.isThirdOutpatient[0].checked = this.configs.isThirdOutpatient == 1;
354
+          this.isThirdEmergencyPatient[0].checked = this.configs.isThirdEmergencyPatient == 1;
349 355
           this.addService[0].checked = this.configs.addService == 1;
350 356
           this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
351 357