|
@@ -77,6 +77,8 @@ public class WebsiteCarOrderController {
|
|
|
}
|
|
|
|
|
|
TourCarOrder tourCarOrder = MyModelUtil.copyTo(tourCarOrderDto, TourCarOrder.class);
|
|
|
+ // 处理订单结束时间
|
|
|
+ tourCarOrder.setEndTime(QueryConditionProccessUtils.getEndDate(tourCarOrderDto.getStartTime(), tourCarOrderDto.getDays()));
|
|
|
// 判断司机是否被其他订单占用
|
|
|
boolean b = tourCarOrderService.verifyDriverOrder(tourCarOrder);
|
|
|
if (b){
|
|
@@ -110,8 +112,6 @@ public class WebsiteCarOrderController {
|
|
|
tourCarOrder.setDriverMobile(carDriver.getMobile());
|
|
|
tourCarOrder.setDriverDeptId(carDriver.getDeptId());
|
|
|
tourCarOrder.setDriverSysId(carDriver.getCreateUserId());
|
|
|
- // 处理订单结束时间
|
|
|
- tourCarOrder.setEndTime(QueryConditionProccessUtils.getEndDate(tourCarOrderDto.getStartTime(), tourCarOrderDto.getDays()));
|
|
|
|
|
|
// 判断车型和司机是否是同一个运营商,自营、第三方
|
|
|
if(carCategory.getType() == carDriver.getType()) {
|