Commit 87b44eae by zhangkb

修改计算综合评价和改善提升平均数的逻辑

parent 5e53cee4
......@@ -86,9 +86,9 @@ public class IndicatorsValueService {
}
}
//计算考核指标综合评分平均值
String scoreAverage = CalculateUtils.averageValue(scoreValue, 0);
String scoreAverage = CalculateUtils.averageValue(scoreValue, 1);
//计算改善提升平均值
String improveAverage = CalculateUtils.averageValue(improveValue, 0);
String improveAverage = CalculateUtils.averageValue(improveValue, 1);
scoreMap.put(compareObj, scoreAverage);
improveMap.put(compareObj, improveAverage);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment