|
|
@ -2241,7 +2241,7 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
logger.info("项目退回,开始推送微信订阅消息"); |
|
|
|
Result result = epmetMessageOpenFeignClient.sendWxSubscribeMessage(wxmpMsgList); |
|
|
|
if (!result.success()) { |
|
|
|
logger.error("项目退回成功,发送微信订阅消息失败" + JSON.toJSONString(result)); |
|
|
|
logger.warn("项目退回成功,发送微信订阅消息失败" + JSON.toJSONString(result)); |
|
|
|
} |
|
|
|
|
|
|
|
//短信消息
|
|
|
@ -2259,7 +2259,7 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
} |
|
|
|
result = epmetMessageOpenFeignClient.projectSendMsg(smsList); |
|
|
|
if (!result.success()) { |
|
|
|
logger.error("项目退回,发送手机短信失败" + JSON.toJSONString(result)); |
|
|
|
logger.warn("项目退回,发送手机短信失败" + JSON.toJSONString(result)); |
|
|
|
} |
|
|
|
|
|
|
|
//项目实时统计消息
|
|
|
@ -2275,7 +2275,7 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
loginUserUtil.getLoginUserClient()); |
|
|
|
boolean msgResult = SendMqMsgUtil.build().openFeignClient(epmetMessageOpenFeignClient).sendProjectChangedMqMsg(mqMsg); |
|
|
|
if (!msgResult) { |
|
|
|
log.error("项目实时统计消息发送失败"); |
|
|
|
log.warn("项目实时统计消息发送失败"); |
|
|
|
} |
|
|
|
|
|
|
|
// 数据上链
|
|
|
@ -2283,7 +2283,7 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
blockChainUploadService.send2BlockChain(null, projectProcessEntity, Arrays.asList(projectStaff), fromDTO.getProjectStaffId()); |
|
|
|
} catch (Exception e) { |
|
|
|
String errorMsg = ExceptionUtils.getThrowableErrorStackTrace(e); |
|
|
|
log.error("【项目流转】上链失败,错误信息:{}", errorMsg); |
|
|
|
log.warn("【项目流转】上链失败,错误信息:{}", errorMsg); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|