|
@@ -58,6 +58,21 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
58
|
58
|
isThirdEmergencyPatient:any[] = [
|
59
|
59
|
{label:'是否开启',value: 0}
|
60
|
60
|
];
|
|
61
|
+ // 批量建立送回
|
|
62
|
+ batchCreationAndReturn:any[] = [
|
|
63
|
+ {label:'是否开启',value: 0}
|
|
64
|
+ ];
|
|
65
|
+
|
|
66
|
+ // 配置执行中扫科室批量签到
|
|
67
|
+ batchSignExecutionDept:any[] = [
|
|
68
|
+ {label:'是否开启',value: 0}
|
|
69
|
+ ];
|
|
70
|
+
|
|
71
|
+ // 批量建立送回
|
|
72
|
+ batchSignEndDept:any[] = [
|
|
73
|
+ {label:'是否开启',value: 0}
|
|
74
|
+ ];
|
|
75
|
+
|
61
|
76
|
|
62
|
77
|
|
63
|
78
|
timeMod:any;
|
|
@@ -231,6 +246,9 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
231
|
246
|
finishService: this.finishService[0].checked ? 1 : 0,
|
232
|
247
|
isThirdOutpatient: this.isThirdOutpatient[0].checked ? 1 : 0,
|
233
|
248
|
isThirdEmergencyPatient: this.isThirdEmergencyPatient[0].checked ? 1 : 0,
|
|
249
|
+ batchCreationAndReturn: this.batchCreationAndReturn[0].checked ? 1 : 0,
|
|
250
|
+ batchSignExecutionDept: this.batchSignExecutionDept[0].checked ? 1 : 0,
|
|
251
|
+ batchSignEndDept: this.batchSignEndDept[0].checked ? 1 : 0,
|
234
|
252
|
addService: this.addService[0].checked ? 1 : 0,
|
235
|
253
|
addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
|
236
|
254
|
|
|
@@ -352,6 +370,9 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
352
|
370
|
this.finishService[0].checked = this.configs.finishService == 1;
|
353
|
371
|
this.isThirdOutpatient[0].checked = this.configs.isThirdOutpatient == 1;
|
354
|
372
|
this.isThirdEmergencyPatient[0].checked = this.configs.isThirdEmergencyPatient == 1;
|
|
373
|
+ this.batchCreationAndReturn[0].checked = this.configs.batchCreationAndReturn == 1;
|
|
374
|
+ this.batchSignExecutionDept[0].checked = this.configs.batchSignExecutionDept == 1;
|
|
375
|
+ this.batchSignEndDept[0].checked = this.configs.batchSignEndDept == 1;
|
355
|
376
|
this.addService[0].checked = this.configs.addService == 1;
|
356
|
377
|
this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
|
357
|
378
|
|