|
@@ -194,18 +194,23 @@ public class TourismProjectToWebServiceImpl implements TourismProjectToWebServic
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Boolean bookProject(HttpServletRequest request,@MyRequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
+ public Boolean bookProject(HttpServletRequest request, TourismBookProjectDto tourBookInfoDto) {
|
|
|
//获取用户的手机号
|
|
|
Long userId = TokenData.takeFromRequest().getUserId();
|
|
|
TourUser tourUser = tourUserService.getById(userId);
|
|
|
String mobile = tourUser.getMobile();
|
|
|
|
|
|
+ if(tourBookInfoDto == null){
|
|
|
+ throw new RuntimeException("预定参数为空!");
|
|
|
+ }
|
|
|
+
|
|
|
//根据当前日期,查询当天的项目日历价格
|
|
|
TourismDatePrice tourismDatePrice = new TourismDatePrice();
|
|
|
tourismDatePrice.setProjectId(tourBookInfoDto.getProjectId());
|
|
|
tourismDatePrice.setDepartureDate(tourBookInfoDto.getStartDate());
|
|
|
TourismDatePrice tourismDatePriceOne = tourismDatePriceService.getOne(tourismDatePrice);
|
|
|
|
|
|
+
|
|
|
//构建预定的数据进行保存
|
|
|
TourBookInfo tourBookInfo = new TourBookInfo();
|
|
|
tourBookInfo.setType(tourBookInfoDto.getType());
|