|
@@ -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"; //护士端是否能标记重点关注
|