|
|
@ -4559,19 +4559,20 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
params.put("statDate", df.format(d)); |
|
|
|
} |
|
|
|
List<ItemStatisListPageResultDTO> list = new ArrayList<>(); |
|
|
|
if (!params.isEmpty() && params.containsKey("evaluationScore") && null != params.get("evaluationScore")) { |
|
|
|
if (params.containsKey("evaluationScore") && params.get("evaluationScore")!=null && StringUtils.isNotBlank(params.get("evaluationScore").toString())) { |
|
|
|
list = baseDao.getevaluationList(params); |
|
|
|
} else if (!params.isEmpty() && params.containsKey("solutionInfo") && null != params.get("solutionInfo")) { |
|
|
|
|
|
|
|
} else if (params.containsKey("solutionInfo") && params.get("solutionInfo")!=null && StringUtils.isNotBlank(params.get("solutionInfo").toString())) { |
|
|
|
list = baseDao.getsolutionList(params); |
|
|
|
} else if (!params.isEmpty() && params.containsKey("reply") && null != params.get("reply")) { |
|
|
|
|
|
|
|
} else if (params.containsKey("reply") && params.get("reply")!=null && StringUtils.isNotBlank(params.get("reply").toString())) { |
|
|
|
list = baseDao.getreplyList(params); |
|
|
|
} else if (!params.isEmpty() && params.containsKey("response") && null != params.get("response")) { |
|
|
|
|
|
|
|
} else if (params.containsKey("response") && params.get("response")!=null && StringUtils.isNotBlank(params.get("response").toString())) { |
|
|
|
list = baseDao.getresponseList(params); |
|
|
|
} |
|
|
|
else { |
|
|
|
}else { |
|
|
|
list = baseDao.getItemStatisListPage(params); |
|
|
|
} |
|
|
|
|
|
|
|
return new PageData<>(list, page.getTotal()); |
|
|
|
|
|
|
|
} |
|
|
|