|
|
@ -144,7 +144,11 @@ public class IcEventServiceImpl extends BaseServiceImpl<IcEventDao, IcEventEntit |
|
|
|
} |
|
|
|
if (categoryMap.containsKey(dto.getCategoryId())) { |
|
|
|
IssueProjectCategoryDictDTO category = categoryMap.get(dto.getCategoryId()); |
|
|
|
dto.setCategoryName(category.getParentCategoryName().concat(StrConstant.HYPHEN).concat(category.getCategoryName())); |
|
|
|
if (StringUtils.isNotBlank(category.getParentCategoryName())) { |
|
|
|
dto.setCategoryName(category.getParentCategoryName().concat(StrConstant.HYPHEN).concat(category.getCategoryName())); |
|
|
|
} else { |
|
|
|
dto.setCategoryName(category.getCategoryName()); |
|
|
|
} |
|
|
|
} |
|
|
|
//每个事件对应的图片数据
|
|
|
|
if(!CollectionUtils.isEmpty(dto.getAttachmentList())){ |
|
|
|