Browse Source

【%s】发表的事件被【%s】转为议题【%s】

master
yinzuomei 3 years ago
parent
commit
fe09f4c88e
  1. 2
      epmet-module/gov-issue/gov-issue-server/src/main/java/com/epmet/service/impl/IssueServiceImpl.java

2
epmet-module/gov-issue/gov-issue-server/src/main/java/com/epmet/service/impl/IssueServiceImpl.java

@ -2019,7 +2019,7 @@ public class IssueServiceImpl extends BaseServiceImpl<IssueDao, IssueEntity> imp
issueProcessEntity.setOrgType(ModuleConstants.ISSUE_PROCESS_ORG_TYPE_AGENCY);
CustomerStaffInfoCacheResult staffInfo=CustomerStaffRedis.getStaffInfo(issueFormDTO.getCustomerId(),issueFormDTO.getCreatedBy());
issueProcessEntity.setOrgId(staffInfo.getAgencyId());
issueProcessEntity.setOperationExplain(String.format("【%s】发表的事件被【%s】转为议题", issueFormDTO.getEventReportUserName(), staffInfo.getAgencyName()));
issueProcessEntity.setOperationExplain(String.format("【%s】发表的事件被【%s】转为议题【%s】", issueFormDTO.getEventReportUserName(), staffInfo.getAgencyName(), issueEntity.getIssueTitle()));
issueProcessEntity.setOrgName(staffInfo.getAgencyName());
issueProcessEntity.setCustomerId(issueFormDTO.getCustomerId());
issueProcessService.insert(issueProcessEntity);

Loading…
Cancel
Save