Browse Source

代码暂存

dev_shibei_match
jianjun 4 years ago
parent
commit
fa5303ec97
  1. 5
      epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/evaluationindex/index/impl/IndexExplainServiceImpl.java

5
epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/evaluationindex/index/impl/IndexExplainServiceImpl.java

@ -126,6 +126,9 @@ public class IndexExplainServiceImpl implements IndexExplainService {
//不下钻 //不下钻
scoreList = gridSubScoreDao.selectGridSubScore(ablityListFormDTO); scoreList = gridSubScoreDao.selectGridSubScore(ablityListFormDTO);
} }
if (scoreList == null || tableList == null) {
return;
}
for (IndexScoreResult score : scoreList) { for (IndexScoreResult score : scoreList) {
for (IndexScoreDetailResult tb : tableList) { for (IndexScoreDetailResult tb : tableList) {
if (tb.getIndexCode().equals(score.getIndexCode())) { if (tb.getIndexCode().equals(score.getIndexCode())) {
@ -136,6 +139,8 @@ public class IndexExplainServiceImpl implements IndexExplainService {
} }
} }
} }
break; break;
default: default:

Loading…
Cancel
Save