修改驳回时,返回错误的问题
This commit is contained in:
parent
a260f0b07c
commit
e470e44f5c
|
|
@ -168,7 +168,7 @@ public class EmployeesMQListener {
|
|||
nuWxNotice.setIzRead("N");
|
||||
nuWxNotice.setOrgCode(dto.getOrgCode());
|
||||
nuWxNotice.setTitle("员工入驻审批");
|
||||
nuWxNotice.setContent("您好,您提交的员工入驻申请未通过,驳回原因:" + dto.getAuditContent() == null ? "无" : dto.getAuditContent());
|
||||
nuWxNotice.setContent("您好,您提交的员工入驻申请未通过,驳回原因:" + (dto.getAuditContent() == null ? "无" : dto.getAuditContent()));
|
||||
nuWxNotice.setType("employee_apply_list");
|
||||
// Map<String, Object> extend = Maps.newHashMap();
|
||||
// extend.put("orgCode", dto.getOrgCode());
|
||||
|
|
@ -556,7 +556,7 @@ public class EmployeesMQListener {
|
|||
modifyResultStr = "审核通过";
|
||||
}
|
||||
if ("3".equals(dto.getModifyStatus())) {
|
||||
nuWxNotice.setContent("您好,您提交的员工信息变更申请未通过,驳回原因:" + dto.getAuditContent() == null ? "无" : dto.getAuditContent());
|
||||
nuWxNotice.setContent("您好,您提交的员工信息变更申请未通过,驳回原因:" + (dto.getAuditContent() == null ? "无" : dto.getAuditContent()));
|
||||
modifyResultStr = "审核未通过";
|
||||
}
|
||||
nuWxNotice.setType("emp_info_update_list");
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@ public class SuppliersMQListener {
|
|||
content1 = "您好,您提交的信息变更已通过";
|
||||
content2 = "审核通过";
|
||||
} else if (StringUtils.equals("modifyFail", suppliersInfoMQDto.getStatus())) {
|
||||
content1 = "您好,您提交的信息变更未通过,驳回原因:"+suppliersInfoMQDto.getApplyContent() == null ? "无" : suppliersInfoMQDto.getApplyContent();
|
||||
content1 = "您好,您提交的信息变更未通过,驳回原因:"+(suppliersInfoMQDto.getApplyContent() == null ? "无" : suppliersInfoMQDto.getApplyContent());
|
||||
content2 = "审核未通过";
|
||||
}
|
||||
NuWxNoticeEntity nuWxNotice = new NuWxNoticeEntity();
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ public class ElderTaggMQListener {
|
|||
nuWxNotice.setIzRead("N");
|
||||
nuWxNotice.setOrgCode(dto.getOrgCode());
|
||||
nuWxNotice.setTitle("监护人信息变更审批");
|
||||
nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者的监护人信息变更申请未通过,驳回原因:" + dto.getAuditContent() == null ? "无" : dto.getAuditContent());
|
||||
nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者的监护人信息变更申请未通过,驳回原因:" + (dto.getAuditContent() == null ? "无" : dto.getAuditContent()));
|
||||
nuWxNotice.setType("elder_jhr_info_update_list");
|
||||
Map<String, Object> extend = Maps.newHashMap();
|
||||
extend.put("orgCode", dto.getOrgCode());
|
||||
|
|
@ -215,7 +215,7 @@ public class ElderTaggMQListener {
|
|||
nuWxNotice.setIzRead("N");
|
||||
nuWxNotice.setOrgCode(dto.getOrgCode());
|
||||
nuWxNotice.setTitle("长者信息变更审批");
|
||||
nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者信息变更申请未通过,驳回原因:" + dto.getAuditContent() == null ? "无" : dto.getAuditContent());
|
||||
nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者信息变更申请未通过,驳回原因:" + (dto.getAuditContent() == null ? "无" : dto.getAuditContent()));
|
||||
nuWxNotice.setType("elder_info_update_list");
|
||||
Map<String, Object> extend = Maps.newHashMap();
|
||||
extend.put("orgCode", dto.getOrgCode());
|
||||
|
|
|
|||
Loading…
Reference in New Issue