|
@@ -1257,7 +1257,12 @@ public class CwProjectReportService extends ServiceImpl<CwProjectReportMapper, C
|
|
|
case "三级复核":
|
|
|
if(null != flow.getComment() && "success".equals(flow.getComment().getLevel())){
|
|
|
if(StringUtils.isNotBlank(flow.getAssigneeName())){
|
|
|
- data.put("thirdlyAuditName",flow.getAssigneeName());
|
|
|
+ UserDTO userDTO = UserUtils.getByName("潘中");
|
|
|
+ if(null != userDTO && StringUtils.isNotBlank(userDTO.getName())){
|
|
|
+ data.put("thirdlyAuditName",userDTO.getName());
|
|
|
+ }else{
|
|
|
+ data.put("thirdlyAuditName","");
|
|
|
+ }
|
|
|
}else{
|
|
|
data.put("thirdlyAuditName","");
|
|
|
}
|