Commit 1be1544b by 李传峰

Merge branch 'hotfix/1007607' into 'master'

hotfix: [1007606] 0712error日志处理

See merge request rays/pcloud-book!1635
parents f2f0c296 67a18319
......@@ -381,9 +381,17 @@ public class CultivateNotifyBizImpl implements CultivateNotifyBiz {
cultivateNotifySend.setShowHome(cultivateNotifyDTO.getShowHome());
cultivateNotifySendList.add(cultivateNotifySend);
}
try {
cultivateNotifySendDao.insert(cultivateNotifySendList);
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