浏览代码

拉取代码

maotao 1 月之前
父节点
当前提交
410d5ae9aa

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

@@ -185,6 +185,11 @@
185 185
           <nz-form-label class="label">是否修改危重等级</nz-form-label>
186 186
           <nz-checkbox-group [(ngModel)]="updatePatientIllness"></nz-checkbox-group>
187 187
         </div>
188
+				<!-- 是否限制陪检人员评估后建单 -->
189
+				<div class="display_flex align-items_center mb8">
190
+				  <nz-form-label class="label">是否限制陪检人员评估后建单</nz-form-label>
191
+				  <nz-checkbox-group [(ngModel)]="inspectUserAuditCreate"></nz-checkbox-group>
192
+				</div>
188 193
         <!-- 检查预约不进行工单合并 -->
189 194
         <!-- <div class="display_flex align-items_center mb8">
190 195
           <nz-form-label class="label">检查预约不进行工单合并</nz-form-label>

+ 7 - 1
src/app/views/inspect-and-patient-transport-config/inspect-and-patient-transport-config.component.ts

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