Commit c06d5df8 authored by 李秀明's avatar 李秀明

fix: BUG#21583 设备管理>消防系统,正常占比数据应该保留2位小数

parent 90f3eb25
...@@ -55,7 +55,7 @@ public class SystemStatisticController extends AbstractBaseController { ...@@ -55,7 +55,7 @@ public class SystemStatisticController extends AbstractBaseController {
if (total.compareTo(BigDecimal.ZERO) == 0) { if (total.compareTo(BigDecimal.ZERO) == 0) {
map.put("abs", BigDecimal.ZERO); map.put("abs", BigDecimal.ZERO);
} else { } else {
map.put("abs", normal.divide(total,2, RoundingMode.HALF_UP).movePointRight(2)); map.put("abs", normal.divide(total, 4, RoundingMode.HALF_UP).multiply(new BigDecimal(100)).setScale(2, RoundingMode.HALF_UP));
} }
return CommonResponseUtil.success(map); return CommonResponseUtil.success(map);
} }
...@@ -115,5 +115,4 @@ public class SystemStatisticController extends AbstractBaseController { ...@@ -115,5 +115,4 @@ public class SystemStatisticController extends AbstractBaseController {
} }
return CommonResponseUtil.success(map); return CommonResponseUtil.success(map);
} }
} }
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