|
@@ -101,7 +101,7 @@ export class TaskTypeManagementComponent implements OnInit {
|
101
|
101
|
isHalfInspect = "0"; //是否半陪检
|
102
|
102
|
isMoreDept = "0"; //关联检查是否允许多个科室
|
103
|
103
|
isRepeatCreateOder = "2"; //限制重复建单
|
104
|
|
- wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
|
|
104
|
+ // wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
|
105
|
105
|
isRemarks: any = "0"; //是否需要备注信息(其他类型)
|
106
|
106
|
remarks = ""; //备注信息提示用语(其他类型)
|
107
|
107
|
quickRemarks = ""; //工单备注快捷选择输入所有(其他类型)
|
|
@@ -754,8 +754,8 @@ export class TaskTypeManagementComponent implements OnInit {
|
754
|
754
|
data.isRepeatCreateOder === undefined
|
755
|
755
|
? "2"
|
756
|
756
|
: data.isRepeatCreateOder + ""; //限制重复建单
|
757
|
|
- this.wechatFocusSwitch =
|
758
|
|
- data.wechatFocusSwitch === undefined ? "0" : data.wechatFocusSwitch + ""; //支助中心端是否能标记重点关注
|
|
757
|
+ // this.wechatFocusSwitch =
|
|
758
|
+ // data.wechatFocusSwitch === undefined ? "0" : data.wechatFocusSwitch + ""; //支助中心端是否能标记重点关注
|
759
|
759
|
this.leadTime =
|
760
|
760
|
data.appointmentTime === undefined ? "0" : data.appointmentTime + ""; //提前生效时间,默认20分钟
|
761
|
761
|
this.isRemarks =
|
|
@@ -1062,8 +1062,8 @@ export class TaskTypeManagementComponent implements OnInit {
|
1062
|
1062
|
this.taskData.taskType.isRepeatCreateOder =
|
1063
|
1063
|
this.isRepeatCreateOder === "1" ? 1 : 0; //限制重复建单
|
1064
|
1064
|
}
|
1065
|
|
- this.taskData.taskType.wechatFocusSwitch =
|
1066
|
|
- this.wechatFocusSwitch === "1" ? 1 : 0; //支助中心端重点关注开关
|
|
1065
|
+ // this.taskData.taskType.wechatFocusSwitch =
|
|
1066
|
+ // this.wechatFocusSwitch === "1" ? 1 : 0; //支助中心端重点关注开关
|
1067
|
1067
|
this.taskData.taskType.remarksSwitch = this.isRemarks === "1" ? 1 : 0; //是否需要备注信息
|
1068
|
1068
|
this.taskData.taskType.remarksPrompts = this.remarks; //备注信息提示用语
|
1069
|
1069
|
this.taskData.taskType.customRemarks = this.quickRemarks; //备注快速输入
|
|
@@ -1169,7 +1169,7 @@ export class TaskTypeManagementComponent implements OnInit {
|
1169
|
1169
|
this.appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检
|
1170
|
1170
|
this.appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他
|
1171
|
1171
|
this.followFlag = "0"; //护士端是否能标记重点关注
|
1172
|
|
- this.wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
|
|
1172
|
+ // this.wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
|
1173
|
1173
|
this.leadTime = "20"; //提前生效时间,默认20分钟
|
1174
|
1174
|
this.isRemarks = "0"; //提前生效时间,默认20分钟
|
1175
|
1175
|
this.addEndDeptIds = []; //自动(手动)建单追加终点科室
|