|
@@ -155,12 +155,26 @@ public class ReportService {
|
|
.mapToDouble(t -> t.getGzss() == null ? 0 : Math.round(t.getGzss().doubleValue() * 100.0) / 100.0)
|
|
.mapToDouble(t -> t.getGzss() == null ? 0 : Math.round(t.getGzss().doubleValue() * 100.0) / 100.0)
|
|
.sum(); // 去年同期故障损失电量
|
|
.sum(); // 去年同期故障损失电量
|
|
|
|
|
|
|
|
+
|
|
double currentDispatchLossPower = turbineList.stream()
|
|
double currentDispatchLossPower = turbineList.stream()
|
|
- .mapToDouble(t -> t.getXdss() == null ? 0 : Math.round(t.getXdss().doubleValue() * 100.0) / 100.0)
|
|
|
|
- .sum(); // 本月调度限电损失电量
|
|
|
|
|
|
+ .mapToDouble(t -> t.getXdss() == null ? 0 : new BigDecimal(t.getXdss().doubleValue())
|
|
|
|
+ .setScale(2, BigDecimal.ROUND_HALF_UP) // 保留两位小数并四舍五入
|
|
|
|
+ .doubleValue())
|
|
|
|
+ .sum();
|
|
|
|
+ currentDispatchLossPower = new BigDecimal(currentDispatchLossPower)
|
|
|
|
+ .setScale(2, BigDecimal.ROUND_HALF_UP) // 确保最后的结果保留两位小数
|
|
|
|
+ .doubleValue();// 本月调度限电损失电量
|
|
|
|
+
|
|
|
|
+
|
|
double lastYearDispatchLossPower = tqturbineList.stream()
|
|
double lastYearDispatchLossPower = tqturbineList.stream()
|
|
- .mapToDouble(t -> t.getXdss() == null ? 0 : Math.round(t.getXdss().doubleValue() * 100.0) / 100.0)
|
|
|
|
- .sum(); // 去年同期调度限电损失电量
|
|
|
|
|
|
+ .mapToDouble(t -> t.getXdss() == null ? 0 : new BigDecimal(t.getXdss().doubleValue())
|
|
|
|
+ .setScale(2, BigDecimal.ROUND_HALF_UP) // 保留两位小数并四舍五入
|
|
|
|
+ .doubleValue())
|
|
|
|
+ .sum();
|
|
|
|
+ lastYearDispatchLossPower = new BigDecimal(lastYearDispatchLossPower)
|
|
|
|
+ .setScale(2, BigDecimal.ROUND_HALF_UP) // 确保最后的结果保留两位小数
|
|
|
|
+ .doubleValue();// 去年同期调度限电损失电量
|
|
|
|
+
|
|
|
|
|
|
double currentPlannedMaintenanceLossPower = turbineList.stream()
|
|
double currentPlannedMaintenanceLossPower = turbineList.stream()
|
|
.mapToDouble(t -> t.getJhjxss() == null ? 0 : Math.round(t.getJhjxss().doubleValue() * 100.0) / 100.0)
|
|
.mapToDouble(t -> t.getJhjxss() == null ? 0 : Math.round(t.getJhjxss().doubleValue() * 100.0) / 100.0)
|