Commit 27f43017 authored by hezhen's avatar hezhen

Merge branch 'master-tiande' of...

Merge branch 'master-tiande' of http://113.105.137.151:22280/youjj/cloud-platform into master-tiande
parents b5d2818f e9417a8c
...@@ -159,9 +159,11 @@ public class VehicleHolidayPriceInfoBiz extends BaseBiz<VehicleHolidayPriceInfoM ...@@ -159,9 +159,11 @@ public class VehicleHolidayPriceInfoBiz extends BaseBiz<VehicleHolidayPriceInfoM
List<VehicleModelCalendarPriceDTO> priceDTOS = CollUtil.newArrayList(); List<VehicleModelCalendarPriceDTO> priceDTOS = CollUtil.newArrayList();
cn.hutool.core.date.DateTime beginOfStartDate = DateUtil.beginOfDay(DateUtil.parse(startDate)); cn.hutool.core.date.DateTime beginOfStartDate = DateUtil.beginOfDay(DateUtil.parse(startDate));
cn.hutool.core.date.DateTime endOfStartDate = DateUtil.endOfDay(DateUtil.parse(endDate)); cn.hutool.core.date.DateTime endOfStartDate = DateUtil.endOfDay(DateUtil.parse(endDate));
//查询车辆信息
Vehicle vehicle = vehicleBiz.selectById(vehicleId);
//获取基本和周末价格 //获取基本和周末价格
VehicleCommonPriceInfo vehicleCommonPriceInfo = vehicleCommonPriceInfoBiz.selectOne(new VehicleCommonPriceInfo(){{ VehicleCommonPriceInfo vehicleCommonPriceInfo = vehicleCommonPriceInfoBiz.selectOne(new VehicleCommonPriceInfo(){{
setCompanyId(companyId); setCompanyId(vehicle.getSubordinateBranch());
setVehicleId(vehicleId); setVehicleId(vehicleId);
}}); }});
...@@ -207,8 +209,6 @@ public class VehicleHolidayPriceInfoBiz extends BaseBiz<VehicleHolidayPriceInfoM ...@@ -207,8 +209,6 @@ public class VehicleHolidayPriceInfoBiz extends BaseBiz<VehicleHolidayPriceInfoM
//获取会员折扣 //获取会员折扣
//查询车辆信息
Vehicle vehicle = vehicleBiz.selectById(vehicleId);
//查询会员信息 //查询会员信息
//默认折扣 //默认折扣
Integer discount = DEFAULT_DISCOUNT; Integer discount = DEFAULT_DISCOUNT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment