|
@@ -109,6 +109,10 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
109
|
updatePatientIllness:any[] = [
|
109
|
updatePatientIllness:any[] = [
|
110
|
{label:'是否开启',value: 0}
|
110
|
{label:'是否开启',value: 0}
|
111
|
];
|
111
|
];
|
|
|
112
|
+ // 是否限制陪检人员评估后建单
|
|
|
113
|
+ inspectUserAuditCreate:any[] = [
|
|
|
114
|
+ {label:'是否开启',value: 0}
|
|
|
115
|
+ ];
|
112
|
// 检查预约不进行工单合并
|
116
|
// 检查预约不进行工单合并
|
113
|
// yyInspectMergeOrder:any[] = [
|
117
|
// yyInspectMergeOrder:any[] = [
|
114
|
// {label:'是否开启',value: 0}
|
118
|
// {label:'是否开启',value: 0}
|
|
@@ -336,6 +340,7 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
336
|
nurseAppendInspect: this.nurseAppendInspect[0].checked ? 1 : 0,
|
340
|
nurseAppendInspect: this.nurseAppendInspect[0].checked ? 1 : 0,
|
337
|
signReassign: this.signReassign[0].checked ? 1 : 0,
|
341
|
signReassign: this.signReassign[0].checked ? 1 : 0,
|
338
|
updatePatientIllness: this.updatePatientIllness[0].checked ? 1 : 0,
|
342
|
updatePatientIllness: this.updatePatientIllness[0].checked ? 1 : 0,
|
|
|
343
|
+ inspectUserAuditCreate: this.inspectUserAuditCreate[0].checked ? 1 : 0,
|
339
|
// yyInspectMergeOrder: this.yyInspectMergeOrder[0].checked ? 1 : 0,
|
344
|
// yyInspectMergeOrder: this.yyInspectMergeOrder[0].checked ? 1 : 0,
|
340
|
addService: this.addService[0].checked ? 1 : 0,
|
345
|
addService: this.addService[0].checked ? 1 : 0,
|
341
|
addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
|
346
|
addServiceTaskIds: this.addServiceTaskIds.length ? this.addServiceTaskIds.toString() : undefined,
|
|
@@ -475,7 +480,8 @@ export class InspectAndPatientTransportConfigComponent implements OnInit {
|
475
|
this.nurseAppendInspect[0].checked = this.configs.nurseAppendInspect == 1;
|
480
|
this.nurseAppendInspect[0].checked = this.configs.nurseAppendInspect == 1;
|
476
|
this.signReassign[0].checked = this.configs.signReassign == 1;
|
481
|
this.signReassign[0].checked = this.configs.signReassign == 1;
|
477
|
this.updatePatientIllness[0].checked = this.configs.updatePatientIllness == 1;
|
482
|
this.updatePatientIllness[0].checked = this.configs.updatePatientIllness == 1;
|
478
|
- // this.yyInspectMergeOrder[0].checked = this.configs.yyInspectMergeOrder == 1;
|
|
|
|
|
483
|
+ this.inspectUserAuditCreate[0].checked = this.configs.inspectUserAuditCreate == 1;
|
|
|
484
|
+ // this.yyInspectMergeOrder[0].checked = this.configs.yyInspectMergeOrder == 1;
|
479
|
this.addService[0].checked = this.configs.addService == 1;
|
485
|
this.addService[0].checked = this.configs.addService == 1;
|
480
|
this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
|
486
|
this.addServiceTaskIds = this.configs.addServiceTaskIds ? this.configs.addServiceTaskIds.split(',').map(v => +v) : [];
|
481
|
|
487
|
|