Browse Source

任务管理:水量同步水量保留两位小数点

zhoujiangyuan 4 years ago
parent
commit
e672607f4b

+ 1 - 1
smart-city-platform/src/main/java/com/bz/smart_city/service/impl/pay/AmountSynServiceImpl.java

@@ -199,7 +199,7 @@ public class AmountSynServiceImpl implements AmountSynService,InitializingBean {
                                                 Duration duration1 = Duration.between(previousTime,replaceTime);
                                                 Duration duration2 = Duration.between(replaceTime,currTime);
                                                 if(duration1.toMillis() > 0  && duration2.toMinutes() > 0){
-                                                    BigDecimal replaceEndData = new BigDecimal(replaceMeterCountDto.getReplaceMeterDtoList().get(i).getOldEnd()).setScale(0,BigDecimal.ROUND_DOWN);//换表中的旧表止度
+                                                    BigDecimal replaceEndData = new BigDecimal(replaceMeterCountDto.getReplaceMeterDtoList().get(i).getOldEnd()).setScale(2,BigDecimal.ROUND_DOWN);//换表中的旧表止度
                                                     BigDecimal replaceData = BigDecimal.ZERO;
                                                     if(oldReplaceMeterDto == null)
                                                         replaceData = tempReading;