Commit 67a18319 by 吴博

hotfix: [1007606] 0712error日志处理

parent d82f7cde
...@@ -381,9 +381,17 @@ public class CultivateNotifyBizImpl implements CultivateNotifyBiz { ...@@ -381,9 +381,17 @@ public class CultivateNotifyBizImpl implements CultivateNotifyBiz {
cultivateNotifySend.setShowHome(cultivateNotifyDTO.getShowHome()); cultivateNotifySend.setShowHome(cultivateNotifyDTO.getShowHome());
cultivateNotifySendList.add(cultivateNotifySend); cultivateNotifySendList.add(cultivateNotifySend);
} }
cultivateNotifySendDao.insert(cultivateNotifySendList); try {
if (NotifyMessageType.SYSTEM.code.equals(cultivateNotifyDTO.getMessageType())) { cultivateNotifySendDao.insert(cultivateNotifySendList);
sendOfficeTemplateMessage4Notify(cultivateNotifyDTO.getTitle(), subList); if (NotifyMessageType.SYSTEM.code.equals(cultivateNotifyDTO.getMessageType())) {
try {
sendOfficeTemplateMessage4Notify(cultivateNotifyDTO.getTitle(), subList);
} catch (Exception e) {
log.warn("发送模板消息失败" + e.getMessage());
}
}
} catch (Exception e) {
log.warn("发送站内信失败" + e.getMessage());
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment