| @@ -6,7 +6,7 @@ package com.iformall.enums; | |||||
| */ | */ | ||||
| public enum EnumMailMsgModel { | public enum EnumMailMsgModel { | ||||
| MAIL_PASS_NODIFY(345, "审批通过通知"), | MAIL_PASS_NODIFY(345, "审批通过通知"), | ||||
| MAIL_BILL_WAIT_PAY(346, "代缴账单通知"), | |||||
| MAIL_BILL_WAIT_PAY(346, "待缴账单通知"), | |||||
| MAIL_APPLY_NODIFY(347, "审批通知"), | MAIL_APPLY_NODIFY(347, "审批通知"), | ||||
| MAIL_BILL_OWE(348, "欠缴账单通知"), | MAIL_BILL_OWE(348, "欠缴账单通知"), | ||||
| MAIL_ASSIGNEE_NODIFY(349, "代办通知"), | MAIL_ASSIGNEE_NODIFY(349, "代办通知"), | ||||
| @@ -7,7 +7,7 @@ package com.iformall.enums; | |||||
| public enum EnumMsgModel { | public enum EnumMsgModel { | ||||
| // type,name | // type,name | ||||
| MALL_APPLY(1, "申请试用"), | MALL_APPLY(1, "申请试用"), | ||||
| FLOW_ASSIGNEE_NODIFY(2, "代办通知"), | |||||
| FLOW_ASSIGNEE_NODIFY(2, "待办通知"), | |||||
| FLOW_APPLY_NODIFY(3, "审批通知"), | FLOW_APPLY_NODIFY(3, "审批通知"), | ||||
| FLOW_PASS_NODIFY(4, "通过审批通知"), | FLOW_PASS_NODIFY(4, "通过审批通知"), | ||||
| FLOW_REJECT_NODIFY(5, "驳回通知"), | FLOW_REJECT_NODIFY(5, "驳回通知"), | ||||
| @@ -27,7 +27,7 @@ public interface WxBillAllService { | |||||
| Long hasOweBill(Long contractId,Integer type); | Long hasOweBill(Long contractId,Integer type); | ||||
| /** | /** | ||||
| * 发送代缴通知邮件 | |||||
| * 发送待缴通知邮件 | |||||
| */ | */ | ||||
| void sendWaitPayBillEmail(); | void sendWaitPayBillEmail(); | ||||
| @@ -661,7 +661,7 @@ public class WxBillAllServiceImpl implements WxBillAllService { | |||||
| map.put("linkName",manager==null?"":manager); | map.put("linkName",manager==null?"":manager); | ||||
| map.put("linkPhone",managerPhone==null?"":managerPhone); | map.put("linkPhone",managerPhone==null?"":managerPhone); | ||||
| MailMsg mailMsg = new MailMsg(); | MailMsg mailMsg = new MailMsg(); | ||||
| mailMsg.setSubject("代缴账单通知"); | |||||
| mailMsg.setSubject("待缴账单通知"); | |||||
| mailMsg.setHtml(true); | mailMsg.setHtml(true); | ||||
| mailMsg.setMsgType(EnumMsgRecordType.EMAIL.getCode()); | mailMsg.setMsgType(EnumMsgRecordType.EMAIL.getCode()); | ||||
| mailMsg.setModelId(EnumMailMsgModel.MAIL_BILL_WAIT_PAY.getCode()); | mailMsg.setModelId(EnumMailMsgModel.MAIL_BILL_WAIT_PAY.getCode()); | ||||
| @@ -426,7 +426,7 @@ public class WxFlowServiceImpl implements WxFlowService { | |||||
| } | } | ||||
| msgReplaceMap.put("taskList", taskListHtml); | msgReplaceMap.put("taskList", taskListHtml); | ||||
| MailMsg mailMsg = new MailMsg(); | MailMsg mailMsg = new MailMsg(); | ||||
| mailMsg.setSubject("代办通知"); | |||||
| mailMsg.setSubject("待办通知"); | |||||
| mailMsg.setHtml(true); | mailMsg.setHtml(true); | ||||
| mailMsg.setMsgType(EnumMsgRecordType.EMAIL.getCode()); | mailMsg.setMsgType(EnumMsgRecordType.EMAIL.getCode()); | ||||
| mailMsg.setModelId(EnumMailMsgModel.MAIL_ASSIGNEE_NODIFY.getCode()); | mailMsg.setModelId(EnumMailMsgModel.MAIL_ASSIGNEE_NODIFY.getCode()); | ||||