Commit 110a276c by zhangkb

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

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