|
|
|
@ -444,19 +444,8 @@ public class ProjectManagementService { |
|
|
|
|
List<ScoreIndex> scoreIndexList = null; |
|
|
|
|
try { |
|
|
|
|
//根据projectId查询判分点交易类型
|
|
|
|
|
//List<TradingJudgmentPoints> judgmentPointsList = mapper.getJudgmentPoints(projectId);
|
|
|
|
|
|
|
|
|
|
/*Integer size = judgmentPointsList.size(); |
|
|
|
|
for (int i = 0; i<size; i++){ |
|
|
|
|
TradingJudgmentPoints tradingJudgmentPoints = judgmentPointsList.get(i); |
|
|
|
|
Integer judgmentPointsId = tradingJudgmentPoints.getId(); |
|
|
|
|
Integer systemId = tradingJudgmentPoints.getSystemId(); |
|
|
|
|
scoreIndexList = mapper.getScore(judgmentPointsId,systemId,projectId); |
|
|
|
|
score.put("scoreIndexList"+i,scoreIndexList); |
|
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
//根据projectId查询判分点信息
|
|
|
|
|
List<TradingJudgmentPoints> judgmentPointsList = mapper.getJudgmentPoints(projectId); |
|
|
|
|
|
|
|
|
|
Integer size = judgmentPointsList.size(); |
|
|
|
|
for (int i = 0; i<size; i++){ |
|
|
|
|
TradingJudgmentPoints tradingJudgmentPoints = judgmentPointsList.get(i); |
|
|
|
@ -465,7 +454,6 @@ public class ProjectManagementService { |
|
|
|
|
scoreIndexList = mapper.getScore(judgmentPointsId,systemId,projectId); |
|
|
|
|
score.put("scoreIndexList"+i,scoreIndexList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<Role> roleList = mapper.queryProjectId(projectId); |
|
|
|
|
obj.put("roleList",roleList); |
|
|
|
|
obj.put("judgmentPointsList", judgmentPointsList); |
|
|
|
|