|
@@ -226,7 +226,13 @@ public class SyncAfterMonthlyUpdateThread extends Thread {
|
|
.divide(calendarHour, 2, RoundingMode.HALF_UP);
|
|
.divide(calendarHour, 2, RoundingMode.HALF_UP);
|
|
}
|
|
}
|
|
report.setSubConGljcl(subConGljcl.toString());
|
|
report.setSubConGljcl(subConGljcl.toString());
|
|
|
|
+ if (calendarHour.compareTo(BigDecimal.ZERO) != 0) {
|
|
|
|
+ subConCc = subConHpProduct.divide(calendarHour, 2, RoundingMode.HALF_UP);
|
|
|
|
+ }
|
|
report.setSubConCc(subConCc.toString());
|
|
report.setSubConCc(subConCc.toString());
|
|
|
|
+ if (calendarHour.compareTo(BigDecimal.ZERO) != 0) {
|
|
|
|
+ subConSc = new BigDecimal("0").subtract((subConHhpSteam.add(subConHpSteamFrSubNet)).divide(calendarHour, 2, RoundingMode.HALF_UP));
|
|
|
|
+ }
|
|
report.setSubConSc(subConSc.toString());
|
|
report.setSubConSc(subConSc.toString());
|
|
|
|
|
|
String subConElectricStr = report.getSubConElectric();
|
|
String subConElectricStr = report.getSubConElectric();
|