Commit 110a276c by zhangkb

修改指标判断全省平均值比较逻辑

parent 31f82d97
...@@ -350,7 +350,8 @@ public class IndicatorsReportService { ...@@ -350,7 +350,8 @@ public class IndicatorsReportService {
DriveIndCalResultDef calResult,String indRule) { DriveIndCalResultDef calResult,String indRule) {
String average = null; String average = null;
//优于平均水平的指标个数 //优于平均水平的指标个数
if(StringUtils.isNotBlank(calResult.getActualAverage())) { if(StringUtils.isNotBlank(calResult.getActualAverage())
&& !"0.0".equals(calResult.getActualAverage())) {
average = calResult.getActualAverage(); average = calResult.getActualAverage();
}else { }else {
average = calResult.getAverage(); average = calResult.getAverage();
......
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