bug:评分计算修改
This commit is contained in:
+2
-2
@@ -88,8 +88,8 @@ public class EsRevisePlanServiceImpl extends ServiceImpl<EsRevisePlanDao, EsRevi
|
||||
if (esRevisePlan.getScore() == null){
|
||||
for (EsRevisePlan revisePlan : esRevisePlans) {
|
||||
if (StringUtils.isNotBlank(revisePlan.getStandId())) {
|
||||
String finalScore = qualityEvaluationService.getScore(revisePlan.getStandId());
|
||||
revisePlan.setScore(Double.valueOf(finalScore));
|
||||
Map<String, Double> score = qualityEvaluationService.getScore(revisePlan.getStandId());
|
||||
revisePlan.setScore(score.get("finalScore"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user