Explorar o código

其他临床服务增加是否关联数据

seimin hai 1 ano
pai
achega
0cd700507e

+ 1 - 1
proxy.conf.json

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "/service": {
3
-    "target": "http://192.168.3.108",
3
+    "target": "http://192.168.4.240",
4 4
     "logLevel": "debug",
5 5
     "changeOrigin": true,
6 6
     "pathRewrite": {

+ 7 - 0
src/app/views/task-type-management/task-type-management.component.html

@@ -187,6 +187,13 @@
187 187
             <label nz-radio nzValue='0'>否</label>
188 188
           </nz-radio-group>
189 189
         </div>
190
+        <div class="mb8 w100" *ngIf="association.value == 'other'">
191
+          <nz-form-label class="label" nzRequired>是否关联数据</nz-form-label>
192
+          <nz-radio-group class="handlerType" [(ngModel)]="bindTrans">
193
+            <label nz-radio nzValue='1'>是</label>
194
+            <label nz-radio nzValue='0'>否</label>
195
+          </nz-radio-group>
196
+        </div>
190 197
         <div class="mb8 w100" *ngIf="association.value == 'patientTransport' || association.value == 'inspect'">
191 198
           <nz-form-label class="label" nzRequired>是否需要医护陪同检查</nz-form-label>
192 199
           <nz-radio-group class="handlerType" [(ngModel)]="isAccompany">

+ 6 - 0
src/app/views/task-type-management/task-type-management.component.ts

@@ -103,6 +103,7 @@ export class TaskTypeManagementComponent implements OnInit {
103 103
   remandTypeId = null; //开通自动送回,选择的任务类型
104 104
   defaultNullDeptId = null; //空单默认科室-标本配送
105 105
   specialCloseButton = "0"; //是否开通自动送回
106
+  bindTrans = "0"; //是否关联数据
106 107
   appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检业务
107 108
   appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他服务
108 109
   followFlag = "0"; //护士端是否能标记重点关注
@@ -964,6 +965,9 @@ export class TaskTypeManagementComponent implements OnInit {
964 965
     this.specialCloseButton = data.specialCloseButton
965 966
       ? data.specialCloseButton + ""
966 967
       : "0";
968
+    this.bindTrans = data.bindTrans
969
+      ? data.bindTrans + ""
970
+      : "0";
967 971
     this.appointmentBuildFlag =
968 972
       data.appointmentSwitch === undefined ? "0" : data.appointmentSwitch + ""; //护士端是否允许预约建单,患者陪检业务
969 973
     this.appointmentBuildFlagZy =
@@ -1261,6 +1265,7 @@ export class TaskTypeManagementComponent implements OnInit {
1261 1265
       delete this.taskData.taskType["ordinaryField"];
1262 1266
     }
1263 1267
     this.taskData.taskType["specialCloseButton"] = this.specialCloseButton;
1268
+    this.taskData.taskType["bindTrans"] = this.bindTrans;
1264 1269
     if (this.departmentStrategy.idv) {
1265 1270
       this.taskData.taskType.carryingCourses[this.indexs].departmentStrategy = {
1266 1271
         id: this.departmentStrategy.idv.split('__')[0],
@@ -1485,6 +1490,7 @@ export class TaskTypeManagementComponent implements OnInit {
1485 1490
     this.remandTypeId = null; //自动送回,选择任务类型
1486 1491
     this.defaultNullDeptId = null; //标本配送空单默认值
1487 1492
     this.specialCloseButton = "0"; //是否特殊情况关闭
1493
+    this.bindTrans = "0"; //是否关联数据
1488 1494
     this.appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检
1489 1495
     this.appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他
1490 1496
     this.followFlag = "0"; //护士端是否能标记重点关注

+ 1 - 1
src/main.ts

@@ -8,7 +8,7 @@ if (environment.production) {
8 8
   enableProdMode();
9 9
   if (window) {
10 10
     window.console.log = function () { };
11
-    console.info('v2.4.46');
11
+    console.info('v2.4.47');
12 12
   }
13 13
 }
14 14
 platformBrowserDynamic().bootstrapModule(AppModule)