|
|
|
@ -1037,10 +1037,10 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
List<IssueProgressResultDTO> issueProgressResultDTOS = issueService.listIssueProgress(entity.getIssueId()); |
|
|
|
resultDTO.setIssueProgressResultDTOS(issueProgressResultDTOS); |
|
|
|
|
|
|
|
//如果是不满意待处理列表的详情增加一个返参【项目未结案切评价结果为不满意的】
|
|
|
|
if ("0".equals(resultDTO.getItemState()) && StringUtils.isNotBlank(resultDTO.getEvaluationScore()) && "0".equals(resultDTO.getEvaluationScore())) { |
|
|
|
//未结案的查一下是否有反馈数据【诉求初验列表详情使用,发展或执法诉求或者是民生诉求评价为不满意的数据才涉及到有反馈数据】
|
|
|
|
if (!"10".equals(resultDTO.getItemState())) { |
|
|
|
QueryWrapper<ItemCommentFeedbackEntity> wrapper = new QueryWrapper<>(); |
|
|
|
wrapper.eq("reference_id", resultDTO.getId()); |
|
|
|
wrapper.eq("item_id", resultDTO.getId()); |
|
|
|
wrapper.eq("del_flag", "0"); |
|
|
|
List<ItemCommentFeedbackEntity> entityList = itemCommentFeedbackDao.selectList(wrapper); |
|
|
|
if (!entityList.isEmpty()) { |
|
|
|
|