|
@@ -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
|
|