1. 预约费
This commit is contained in:
parent
c3f09579dd
commit
da8521bb6d
|
@ -425,6 +425,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
||||||
order.setAppointmentEndTime(DateUtils.getNowDate());
|
order.setAppointmentEndTime(DateUtils.getNowDate());
|
||||||
//计算预约费
|
//计算预约费
|
||||||
calculateAppointmentFee(order);
|
calculateAppointmentFee(order);
|
||||||
|
order.setTotalFee(order.getAppointmentFee());
|
||||||
int update = etOrderService.updateEtOrder(order);
|
int update = etOrderService.updateEtOrder(order);
|
||||||
if(update==0){
|
if(update==0){
|
||||||
log.info("【扫码/编号开锁骑行】更新订单失败");
|
log.info("【扫码/编号开锁骑行】更新订单失败");
|
||||||
|
@ -772,6 +773,11 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
||||||
order.setStatus(ServiceConstants.ORDER_STATUS_CANCEL_APPOINTMENT);
|
order.setStatus(ServiceConstants.ORDER_STATUS_CANCEL_APPOINTMENT);
|
||||||
order.setAppointmentEndTime(new Date());
|
order.setAppointmentEndTime(new Date());
|
||||||
order.setAppointmentTimeout("1");
|
order.setAppointmentTimeout("1");
|
||||||
|
//计算预约费
|
||||||
|
BigDecimal appointmentServiceFee = area.getAppointmentServiceFee();
|
||||||
|
BigDecimal fee = appointmentServiceFee.multiply(new BigDecimal(area.getTimeoutMinutes()).divide(new BigDecimal(10)));
|
||||||
|
order.setAppointmentFee(fee);
|
||||||
|
order.setTotalFee(fee);
|
||||||
int update = etOrderService.updateEtOrder(order);
|
int update = etOrderService.updateEtOrder(order);
|
||||||
if(update==0){
|
if(update==0){
|
||||||
throw new ServiceException("【车辆预约】:更新订单状态失败");
|
throw new ServiceException("【车辆预约】:更新订单状态失败");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user