Commit 8ed39d93a46975c80f5824cfa70b62b6c6a6d9ff
1 parent
cc46f162
提交
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/datastatistic/BerthsStatisticController.java
... | ... | @@ -379,14 +379,14 @@ public class BerthsStatisticController extends BizController { |
379 | 379 | timeAndVal.put(statisEndTime, null==statisticDTO.getFreeRatio()? 0: statisticDTO.getFreeRatio()* 100); |
380 | 380 | parkLotMap.put(key, timeAndVal); |
381 | 381 | } else if (ParkConstant.ParkingLotUseStatistic.BerthRatioType.TURNOVER == berthRatio) { |
382 | - timeAndVal.put(statisEndTime, null==statisticDTO.getTurnoverRatio()?0:statisticDTO.getTurnoverRatio() ); | |
382 | + timeAndVal.put(statisEndTime, null==statisticDTO.getTurnoverRatio()?0:statisticDTO.getTurnoverRatio()* 100 ); | |
383 | 383 | parkLotMap.put(key, timeAndVal); |
384 | 384 | } |
385 | 385 | } else { |
386 | 386 | if (ParkConstant.ParkingLotUseStatistic.BerthRatioType.FREE == berthRatio) { |
387 | 387 | parkLotMap.get(key).put(statisEndTime, null==statisticDTO.getFreeRatio()? 0: statisticDTO.getFreeRatio()* 100); |
388 | 388 | } else if (ParkConstant.ParkingLotUseStatistic.BerthRatioType.TURNOVER == berthRatio) { |
389 | - parkLotMap.get(key).put(statisEndTime, null==statisticDTO.getTurnoverRatio()?0:statisticDTO.getTurnoverRatio() ); | |
389 | + parkLotMap.get(key).put(statisEndTime, null==statisticDTO.getTurnoverRatio()?0:statisticDTO.getTurnoverRatio()* 100 ); | |
390 | 390 | } |
391 | 391 | } |
392 | 392 | ... | ... |