|
@@ -291,15 +291,16 @@ public class OpenService {
|
|
|
&& !pay) {
|
|
|
RedisUtil.setByMINUTES(channel, carNo, 1);
|
|
|
businessMoney = businessMoney.add(tbBusiness.getItemPrice());
|
|
|
- log.error("请求返回:请缴纳业务费用:{}", carNo);
|
|
|
+ log.error("需要缴纳业务费用:{},{}", carNo,businessMoney.toString());
|
|
|
// return ResultJson.error("请缴纳业务费用");
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
BigDecimal total = businessMoney.add(carMoney);
|
|
|
if (total.doubleValue() > 0) {
|
|
|
- log.error("请求返回:请缴费用:{},{}元", carNo, total.doubleValue());
|
|
|
- return ResultJson.error("请缴费用" + total.doubleValue() + "元");
|
|
|
+ String desc = "请缴业务费" + businessMoney.toString() + "元,停车费" + carMoney.toString()+"元";
|
|
|
+ log.error("请求返回:{},{}", carNo, desc);
|
|
|
+ return ResultJson.error(desc);
|
|
|
}
|
|
|
//离场直接解绑
|
|
|
tbDeductionBindService.autoUnbindCar(tbBusinessCar.getCarNo());
|