Browse Source

heart-work:积分发放添加消息事件remark

dev_shibei_match
yinzuomei 5 years ago
parent
commit
c219e036f9
  1. 2
      epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/WorkActServiceImpl.java

2
epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/WorkActServiceImpl.java

@ -685,11 +685,13 @@ public class WorkActServiceImpl implements WorkActService {
logger.info("不存在给分的记录,无需发送消息时间");
return;
}
//查询当前用户所属组织信息
Result<CustomerAgencyDTO> userResult=govOrgOpenFeignClient.getAgencyByStaff(loginUserUtil.getLoginUserId());
if(!userResult.success()||null==userResult.getData()){
logger.error(String.format("根据staffId查询所属的组织机构失败,staffId=%s",loginUserUtil.getLoginUserId()));
}
String opAgencyId=userResult.getData().getId();
//备注
String remark=String.format(ActMessageConstant.ACT_POINTS_EVENT_REMARK,actInfoDTO.getTitle());
MqBaseMsgDTO mqBaseMsgDTO=new MqBaseMsgDTO();
//mq的事件类型

Loading…
Cancel
Save