|
@@ -194,7 +194,7 @@ public class TourismProjectToWebServiceImpl implements TourismProjectToWebServic
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void bookProject(HttpServletRequest request,@MyRequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
+ public Boolean bookProject(HttpServletRequest request,@MyRequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
//获取用户的手机号
|
|
|
Long userId = TokenData.takeFromRequest().getUserId();
|
|
|
TourUser tourUser = tourUserService.getById(userId);
|
|
@@ -222,6 +222,6 @@ public class TourismProjectToWebServiceImpl implements TourismProjectToWebServic
|
|
|
.add(tourismDatePriceOne.getChildrenPrice().multiply(BigDecimal.valueOf(tourBookInfoDto.getChildrenNumber()))));
|
|
|
tourBookInfo.setBookIp(IpUtil.getRemoteIpAddress(request));
|
|
|
|
|
|
- tourBookInfoService.saveNew(tourBookInfo);
|
|
|
+ return tourBookInfoService.save(tourBookInfo);
|
|
|
}
|
|
|
}
|