小程序各端审核驳回后 如果未填写驳回原因 小程序通知处驳回原因显示:无

This commit is contained in:
1378012178@qq.com 2026-02-27 10:18:18 +08:00
parent 9a47956a6b
commit 7d482fa9fd
4 changed files with 7 additions and 7 deletions

View File

@ -455,7 +455,7 @@ public class OrgApplyInfoServiceImpl extends ServiceImpl<OrgApplyInfoMapper, Org
nuWxNotice.setIzRead("N"); nuWxNotice.setIzRead("N");
nuWxNotice.setOrgCode(null); nuWxNotice.setOrgCode(null);
nuWxNotice.setTitle("机构加盟审核"); nuWxNotice.setTitle("机构加盟审核");
nuWxNotice.setContent("您好,您提交的" + orgApplyInfo.getComName() + "机构加盟申请未通过,驳回原因:" + orgApplyInfo.getContent()); nuWxNotice.setContent("您好,您提交的" + orgApplyInfo.getComName() + "机构加盟申请未通过,驳回原因:" + orgApplyInfo.getContent() == null ? "" : orgApplyInfo.getContent());
nuWxNotice.setType("org_apply_audit_list"); nuWxNotice.setType("org_apply_audit_list");
nuWxNotice.setClientType(WxClientType.INSTITUTION.getCode()); nuWxNotice.setClientType(WxClientType.INSTITUTION.getCode());
wxNoticeApi.addNotice(nuWxNotice); wxNoticeApi.addNotice(nuWxNotice);
@ -639,7 +639,7 @@ public class OrgApplyInfoServiceImpl extends ServiceImpl<OrgApplyInfoMapper, Org
nuWxNotice.setIzRead("N"); nuWxNotice.setIzRead("N");
nuWxNotice.setOrgCode(null); nuWxNotice.setOrgCode(null);
nuWxNotice.setTitle("机构信息变更审核"); nuWxNotice.setTitle("机构信息变更审核");
nuWxNotice.setContent("您好,您提交的" + orgApplyInfo.getComName() + "机构信息变更申请未通过,驳回原因:" + orgApplyInfo.getContent()); nuWxNotice.setContent("您好,您提交的" + orgApplyInfo.getComName() + "机构信息变更申请未通过,驳回原因:" + orgApplyInfo.getContent() == null ? "" : orgApplyInfo.getContent());
nuWxNotice.setType("org_apply_audit_list"); nuWxNotice.setType("org_apply_audit_list");
nuWxNotice.setClientType(WxClientType.INSTITUTION.getCode()); nuWxNotice.setClientType(WxClientType.INSTITUTION.getCode());
wxNoticeApi.addNotice(nuWxNotice); wxNoticeApi.addNotice(nuWxNotice);

View File

@ -168,7 +168,7 @@ public class EmployeesMQListener {
nuWxNotice.setIzRead("N"); nuWxNotice.setIzRead("N");
nuWxNotice.setOrgCode(dto.getOrgCode()); nuWxNotice.setOrgCode(dto.getOrgCode());
nuWxNotice.setTitle("员工入驻审批"); nuWxNotice.setTitle("员工入驻审批");
nuWxNotice.setContent("您好,您提交的员工入驻申请未通过,驳回原因:" + dto.getAuditContent()); nuWxNotice.setContent("您好,您提交的员工入驻申请未通过,驳回原因:" + dto.getAuditContent() == null ? "" : dto.getAuditContent());
nuWxNotice.setType("employee_apply_list"); nuWxNotice.setType("employee_apply_list");
// Map<String, Object> extend = Maps.newHashMap(); // Map<String, Object> extend = Maps.newHashMap();
// extend.put("orgCode", dto.getOrgCode()); // extend.put("orgCode", dto.getOrgCode());
@ -485,7 +485,7 @@ public class EmployeesMQListener {
modifyResultStr = "审核通过"; modifyResultStr = "审核通过";
} }
if ("3".equals(dto.getModifyStatus())) { if ("3".equals(dto.getModifyStatus())) {
nuWxNotice.setContent("您好,您提交的员工信息变更申请未通过,驳回原因:" + dto.getAuditContent()); nuWxNotice.setContent("您好,您提交的员工信息变更申请未通过,驳回原因:" + dto.getAuditContent() == null ? "" : dto.getAuditContent());
modifyResultStr = "审核未通过"; modifyResultStr = "审核未通过";
} }
nuWxNotice.setType("emp_info_update_list"); nuWxNotice.setType("emp_info_update_list");

View File

@ -182,7 +182,7 @@ public class SuppliersMQListener {
content1 = "您好,您提交的信息变更已通过"; content1 = "您好,您提交的信息变更已通过";
content2 = "审核通过"; content2 = "审核通过";
} else if (StringUtils.equals("modifyFail", suppliersInfoMQDto.getStatus())) { } else if (StringUtils.equals("modifyFail", suppliersInfoMQDto.getStatus())) {
content1 = "您好,您提交的信息变更未通过,驳回原因:"+suppliersInfoMQDto.getApplyContent(); content1 = "您好,您提交的信息变更未通过,驳回原因:"+suppliersInfoMQDto.getApplyContent() == null ? "" : suppliersInfoMQDto.getApplyContent();
content2 = "审核未通过"; content2 = "审核未通过";
} }
NuWxNoticeEntity nuWxNotice = new NuWxNoticeEntity(); NuWxNoticeEntity nuWxNotice = new NuWxNoticeEntity();

View File

@ -188,7 +188,7 @@ public class ElderTaggMQListener {
nuWxNotice.setIzRead("N"); nuWxNotice.setIzRead("N");
nuWxNotice.setOrgCode(dto.getOrgCode()); nuWxNotice.setOrgCode(dto.getOrgCode());
nuWxNotice.setTitle("监护人信息变更审批"); nuWxNotice.setTitle("监护人信息变更审批");
nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者的监护人信息变更申请未通过,驳回原因:" + dto.getAuditContent()); nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者的监护人信息变更申请未通过,驳回原因:" + dto.getAuditContent() == null ? "" : dto.getAuditContent());
nuWxNotice.setType("elder_jhr_info_update_list"); nuWxNotice.setType("elder_jhr_info_update_list");
Map<String, Object> extend = Maps.newHashMap(); Map<String, Object> extend = Maps.newHashMap();
extend.put("orgCode", dto.getOrgCode()); extend.put("orgCode", dto.getOrgCode());
@ -215,7 +215,7 @@ public class ElderTaggMQListener {
nuWxNotice.setIzRead("N"); nuWxNotice.setIzRead("N");
nuWxNotice.setOrgCode(dto.getOrgCode()); nuWxNotice.setOrgCode(dto.getOrgCode());
nuWxNotice.setTitle("长者信息变更审批"); nuWxNotice.setTitle("长者信息变更审批");
nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者信息变更申请未通过,驳回原因:" + dto.getAuditContent()); nuWxNotice.setContent("您好,您提交的" + dto.getName() + "长者信息变更申请未通过,驳回原因:" + dto.getAuditContent() == null ? "" : dto.getAuditContent());
nuWxNotice.setType("elder_info_update_list"); nuWxNotice.setType("elder_info_update_list");
Map<String, Object> extend = Maps.newHashMap(); Map<String, Object> extend = Maps.newHashMap();
extend.put("orgCode", dto.getOrgCode()); extend.put("orgCode", dto.getOrgCode());