| | |
| | | |
| | | |
| | | //获取停车时间 |
| | | long min = TempCarFeeFactory.getTempCarMin(carInoutDto); |
| | | long min = TempCarFeeFactory.getTempCarCeilMin(carInoutDto); |
| | | |
| | | //免费分钟 |
| | | int freeMin = TempCarFeeFactory.getAttrValueInt(tempCarFeeConfigAttrDtos, SPEC_CD_5600012010); |
| | |
| | | double curMoney = 0.0; |
| | | |
| | | //免费时间中 |
| | | if (min < freeMin && !TempCarFeeFactory.judgeFinishPayTempCarFee(carInoutDto)) { |
| | | if (min <= freeMin && !TempCarFeeFactory.judgeFinishPayTempCarFee(carInoutDto)) { |
| | | return new TempCarFeeResult(carInoutDto.getCarNum(), 0.0, maxFeeMoney, baseMoney); |
| | | } |
| | | |