|
@@ -104,6 +104,7 @@ export class TaskTypeManagementComponent implements OnInit {
|
104
|
104
|
remandTypeId = null; //开通自动送回,选择的任务类型
|
105
|
105
|
defaultNullDeptId = null; //空单默认科室-标本配送
|
106
|
106
|
specialCloseButton = "0"; //是否开通自动送回
|
|
107
|
+ executeSwitch = 0;
|
107
|
108
|
bindTrans = "0"; //是否关联数据
|
108
|
109
|
appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检业务
|
109
|
110
|
appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他服务
|
|
@@ -966,6 +967,7 @@ export class TaskTypeManagementComponent implements OnInit {
|
966
|
967
|
this.specialCloseButton = data.specialCloseButton
|
967
|
968
|
? data.specialCloseButton + ""
|
968
|
969
|
: "0";
|
|
970
|
+ this.executeSwitch = data.executeSwitch ? data.executeSwitch : 0;
|
969
|
971
|
this.bindTrans = data.bindTrans
|
970
|
972
|
? data.bindTrans + ""
|
971
|
973
|
: "0";
|
|
@@ -1266,6 +1268,7 @@ export class TaskTypeManagementComponent implements OnInit {
|
1266
|
1268
|
delete this.taskData.taskType["ordinaryField"];
|
1267
|
1269
|
}
|
1268
|
1270
|
this.taskData.taskType["specialCloseButton"] = this.specialCloseButton;
|
|
1271
|
+ this.taskData.taskType["executeSwitch"] = this.executeSwitch;
|
1269
|
1272
|
this.taskData.taskType["bindTrans"] = this.bindTrans;
|
1270
|
1273
|
if (this.departmentStrategy.idv) {
|
1271
|
1274
|
this.taskData.taskType.carryingCourses[this.indexs].departmentStrategy = {
|
|
@@ -1491,6 +1494,7 @@ export class TaskTypeManagementComponent implements OnInit {
|
1491
|
1494
|
this.remandTypeId = null; //自动送回,选择任务类型
|
1492
|
1495
|
this.defaultNullDeptId = null; //标本配送空单默认值
|
1493
|
1496
|
this.specialCloseButton = "0"; //是否特殊情况关闭
|
|
1497
|
+ this.executeSwitch = 0;
|
1494
|
1498
|
this.bindTrans = "0"; //是否关联数据
|
1495
|
1499
|
this.appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检
|
1496
|
1500
|
this.appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他
|