|
@@ -1,53 +1,28 @@
|
|
|
package com.tourism.webadmin.app.website.controller;
|
|
|
|
|
|
-import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
import cn.dev33.satoken.annotation.SaIgnore;
|
|
|
-import cn.hutool.core.date.DateUnit;
|
|
|
-import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
-import com.github.pagehelper.page.PageMethod;
|
|
|
-import com.tourism.common.additional.utils.MapConvertUtils;
|
|
|
-import com.tourism.common.additional.utils.StringUtils;
|
|
|
-import com.tourism.common.additional.utils.UrlConvertUtils;
|
|
|
+import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
import com.tourism.common.core.constant.ErrorCodeEnum;
|
|
|
import com.tourism.common.core.object.*;
|
|
|
-import com.tourism.common.core.util.IpUtil;
|
|
|
-import com.tourism.common.core.util.MyDateUtil;
|
|
|
-import com.tourism.common.core.util.MyModelUtil;
|
|
|
-import com.tourism.common.core.util.MyPageUtil;
|
|
|
+import com.tourism.common.core.util.MyCommonUtil;
|
|
|
+import com.tourism.common.core.validator.UpdateGroup;
|
|
|
import com.tourism.webadmin.app.website.dto.TourismBookProjectDto;
|
|
|
import com.tourism.webadmin.app.website.dto.TourismProjectToWebDto;
|
|
|
-import com.tourism.webadmin.app.website.vo.DateRange;
|
|
|
-import com.tourism.webadmin.app.website.vo.TourismProjectDatePriceVo;
|
|
|
+import com.tourism.webadmin.app.website.service.TourismProjectToWebService;
|
|
|
import com.tourism.webadmin.app.website.vo.WebSiteProjectDatePriceVo;
|
|
|
-import com.tourism.webadmin.back.dto.TourBookInfoDto;
|
|
|
import com.tourism.webadmin.back.model.*;
|
|
|
-import com.tourism.webadmin.back.service.TourBookInfoService;
|
|
|
-import com.tourism.webadmin.back.service.TourUserService;
|
|
|
-import com.tourism.webadmin.back.service.TourismDatePriceService;
|
|
|
import com.tourism.webadmin.back.service.TourismProjectService;
|
|
|
import com.tourism.webadmin.back.vo.TourismProjectVo;
|
|
|
-import com.tourism.common.additional.config.ApplicationConfig;
|
|
|
-import io.swagger.v3.oas.annotations.Parameter;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
import jakarta.validation.Valid;
|
|
|
import jakarta.validation.constraints.NotNull;
|
|
|
+import jakarta.validation.groups.Default;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.apache.commons.collections4.CollectionUtils;
|
|
|
-import org.apache.commons.lang3.time.DateUtils;
|
|
|
-import org.joda.time.DateTime;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
-import java.time.LocalDate;
|
|
|
-import java.time.ZoneId;
|
|
|
-import java.util.*;
|
|
|
-import java.util.stream.Collectors;
|
|
|
-
|
|
|
-import static java.util.stream.Collectors.toList;
|
|
|
-
|
|
|
/**
|
|
|
* 旅游项目管理操作控制器类。
|
|
|
*
|
|
@@ -63,14 +38,9 @@ public class TourismProjectToWebController {
|
|
|
|
|
|
@Autowired
|
|
|
private TourismProjectService tourismProjectService;
|
|
|
+
|
|
|
@Autowired
|
|
|
- private ApplicationConfig applicationConfig;
|
|
|
- @Autowired
|
|
|
- private TourismDatePriceService tourismDatePriceService;
|
|
|
- @Autowired
|
|
|
- private TourUserService tourUserService;
|
|
|
- @Autowired
|
|
|
- private TourBookInfoService tourBookInfoService;
|
|
|
+ private TourismProjectToWebService tourismProjectToWebService;
|
|
|
|
|
|
/**
|
|
|
* 列出符合过滤条件的旅游项目管理列表。
|
|
@@ -82,42 +52,7 @@ public class TourismProjectToWebController {
|
|
|
@GetMapping("/list")
|
|
|
public ResponseResult<MyPageData<TourismProjectVo>> list(
|
|
|
@Valid @ModelAttribute TourismProjectToWebDto tourismProjectDtoFilter) {
|
|
|
-// if(tourismProjectDtoFilter.getBelongTab() == null){
|
|
|
-// return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST,"所属分类(belongTab)不能为空!");
|
|
|
-// }
|
|
|
- //如果belongTab小于1000并且大于10.则表明查询的是一级菜单
|
|
|
- if(tourismProjectDtoFilter.getBelongTab() !=null && tourismProjectDtoFilter.getBelongTab()>=10 && tourismProjectDtoFilter.getBelongTab()<1000){
|
|
|
- DirectoryInfo filter = new DirectoryInfo();
|
|
|
- filter.setParentId(tourismProjectDtoFilter.getBelongTab());
|
|
|
- filter.setEnable(1);
|
|
|
- List<DirectoryInfo> directoryInfoList = tourismProjectService.getDirectoryInfoList(filter, null);
|
|
|
- tourismProjectDtoFilter.setBelongTab(null);
|
|
|
- tourismProjectDtoFilter.setDirectoryInfoIds(directoryInfoList.stream().map(DirectoryInfo::getId).collect(toList()));
|
|
|
- }
|
|
|
- TourismProject tourismProjectFilter = MyModelUtil.copyTo(tourismProjectDtoFilter, TourismProject.class);
|
|
|
- //首页展示的为启用的内容
|
|
|
- tourismProjectFilter.setEnable(1);
|
|
|
- String orderBy = MyOrderParam.buildOrderBy(tourismProjectDtoFilter.getOrderParamList(), TourismProject.class);
|
|
|
- if (tourismProjectDtoFilter.getPageNum() != null && tourismProjectDtoFilter.getPageSize() != null ) {
|
|
|
- PageMethod.startPage(tourismProjectDtoFilter.getPageNum(), tourismProjectDtoFilter.getPageSize(), true);
|
|
|
- }
|
|
|
- List<TourismProject> tourismProjectList =
|
|
|
- tourismProjectService.getTourismProjectList(tourismProjectFilter, orderBy);
|
|
|
-// List<TourismProject> tourismProjectList =
|
|
|
-// tourismProjectService.getTourismProjectListWithRelation(tourismProjectFilter, orderBy);
|
|
|
- MyPageData<TourismProjectVo> tourismProjectVoMyPageData = MyPageUtil.makeResponseData(tourismProjectList, TourismProjectVo.class);
|
|
|
-
|
|
|
- List<TourismProjectVo> dataList = tourismProjectVoMyPageData.getDataList();
|
|
|
- //先把imgUrl由jaon转换为List<FileUrlObject>
|
|
|
- dataList.stream().forEach(item ->
|
|
|
- {
|
|
|
- List<String> urlList = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getHomeHotPicture());
|
|
|
- item.setHomeHotPicturesAfterConvert(urlList);
|
|
|
- List<String> arrayList = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getTourismUrl());
|
|
|
- item.setTourismUrlsAfterConvert(arrayList);
|
|
|
- List<String> arrayList1 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getTravelNotesBanner());
|
|
|
- item.setTravelNotesBannerAfterConvert(arrayList1);
|
|
|
- });
|
|
|
+ MyPageData<TourismProjectVo> tourismProjectVoMyPageData = tourismProjectToWebService.list(tourismProjectDtoFilter);
|
|
|
return ResponseResult.success(tourismProjectVoMyPageData);
|
|
|
}
|
|
|
|
|
@@ -128,38 +63,13 @@ public class TourismProjectToWebController {
|
|
|
* @return 应答结果对象,包含对象详情。
|
|
|
*/
|
|
|
@SaIgnore
|
|
|
-// @SaCheckPermission("tourismProject.view")
|
|
|
@GetMapping("/detail")
|
|
|
- public ResponseResult<TourismProjectVo> detail(@NotNull(message = "所属目录(id)不能为空") String id) {
|
|
|
+ public ResponseResult<TourismProjectVo> detail(@NotNull(message = "所属目录(id)不能为空") Long id) {
|
|
|
TourismProject tourismProject = tourismProjectService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
if (tourismProject == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
}
|
|
|
- TourismProjectVo tourismProjectVo = MyModelUtil.copyTo(tourismProject, TourismProjectVo.class);
|
|
|
- List<String> arrayList = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourismProjectVo.getTourismUrl());
|
|
|
- tourismProjectVo.setTourismUrlsAfterConvert(arrayList);
|
|
|
- List<String> arrayList1 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourismProjectVo.getHomeHotPicture());
|
|
|
- tourismProjectVo.setHomeHotPicturesAfterConvert(arrayList1);
|
|
|
- List<String> arrayList2 = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourismProjectVo.getTravelNotesBanner());
|
|
|
- tourismProjectVo.setTravelNotesBannerAfterConvert(arrayList2);
|
|
|
- if(tourismProjectVo.getTourismFile() != null){
|
|
|
- // 使用 Jackson 的 ObjectMapper 进行转换
|
|
|
- ObjectMapper objectMapper = new ObjectMapper();
|
|
|
- TourismFile tourismFile = objectMapper.convertValue(tourismProjectVo.getTourismFile(), TourismFile.class);
|
|
|
- if(StringUtils.isNotEmpty(tourismFile.getFileUrl())){
|
|
|
- tourismFile.setFileUrlsAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourismFile.getFileUrl()));
|
|
|
- tourismProjectVo.setTourismFile(MapConvertUtils.convertObjectToMap(tourismFile));
|
|
|
- }
|
|
|
- }
|
|
|
- //二维码路径赋值
|
|
|
-// tourismProjectVo.setContactCode("[{\"name\":\"微信图片_20241021154757.png\",\"downloadUri\":\"/admin/app/tourTourismProjectTravelNotes/download\",\"filename\":\"6b92b75edcc04da1bd6e4af056911730.png\",\"uploadPath\":\"image/TourTourismProjectTravelNotes/contactCode\"}]");
|
|
|
-// List<String> urlConvertList = UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourismProjectVo.getContactCode());
|
|
|
-// if(CollectionUtils.isNotEmpty(urlConvertList)) {
|
|
|
-// tourismProjectVo.setContactCodeConvert(urlConvertList.get(0));
|
|
|
-// }
|
|
|
- if(tourismProjectVo != null) {
|
|
|
- tourismProjectVo.setContactCodeConvert("https://v.xiaoyaotravel.com/image/ContactQRCode/tourism.png");
|
|
|
- }
|
|
|
+ TourismProjectVo tourismProjectVo = tourismProjectToWebService.detail(tourismProject);
|
|
|
return ResponseResult.success(tourismProjectVo);
|
|
|
}
|
|
|
/**
|
|
@@ -170,92 +80,28 @@ public class TourismProjectToWebController {
|
|
|
*/
|
|
|
@SaIgnore
|
|
|
@GetMapping("/viewDatePrice")
|
|
|
- public ResponseResult<WebSiteProjectDatePriceVo> view(@RequestParam String projectId) {
|
|
|
-
|
|
|
- TourismDatePrice tourismDatePrice = new TourismDatePrice();
|
|
|
- tourismDatePrice.setProjectId(projectId);
|
|
|
- tourismDatePrice.setNowDate(new Date());
|
|
|
-
|
|
|
- //查询进行排序
|
|
|
- MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
- MyOrderParam.OrderInfo orderInfo = new MyOrderParam.OrderInfo();
|
|
|
- orderInfo.setFieldName("departureDate");
|
|
|
- orderInfo.setAsc(true);
|
|
|
- myOrderParam.add(orderInfo);
|
|
|
- String orderBy = MyOrderParam.buildOrderBy(myOrderParam, TourismDatePrice.class);
|
|
|
- List<TourismDatePrice> tourismDatePriceList =
|
|
|
- tourismDatePriceService.getTourismDatePriceList(tourismDatePrice, orderBy);
|
|
|
-// List<TourismDatePrice> tourismDatePriceSortList = tourismDatePriceList.stream()
|
|
|
-// .sorted(Comparator.comparing(TourismDatePrice::getDepartureDate))
|
|
|
-// .collect(Collectors.toList());
|
|
|
- List<TourismProjectDatePriceVo> tourismProjectDatePriceVos = MyModelUtil.copyCollectionTo(tourismDatePriceList, TourismProjectDatePriceVo.class);
|
|
|
-
|
|
|
- DateRange dateRange = new DateRange();
|
|
|
- dateRange.setStartDate(new Date().toInstant().atZone(ZoneId.systemDefault()).toLocalDate());
|
|
|
- if(!CollectionUtils.isEmpty(tourismDatePriceList)) {
|
|
|
- Optional<Date> max = tourismDatePriceList.stream()
|
|
|
- .map(TourismDatePrice::getDepartureDate)
|
|
|
- .max(Comparator.naturalOrder());
|
|
|
- dateRange.setEndDate(max.get().toInstant().atZone(ZoneId.systemDefault()).toLocalDate());
|
|
|
- }else {
|
|
|
- dateRange.setEndDate(DateUtils.addDays(new Date(), 30).toInstant().atZone(ZoneId.systemDefault()).toLocalDate());
|
|
|
- }
|
|
|
-// //查询项目的默认价格
|
|
|
-// TourismProject tourismProject = tourismProjectService.getById(projectId);
|
|
|
-// if(tourismProject != null){
|
|
|
-// tourismProjectDatePriceVos.stream().forEach(item->{
|
|
|
-// item.setProjectPrice(tourismProject.getPrice().toString().concat(tourismProject.getPriceUnit()));
|
|
|
-// });
|
|
|
-// }
|
|
|
- WebSiteProjectDatePriceVo webSiteProjectDatePriceVo = new WebSiteProjectDatePriceVo();
|
|
|
- // 使用 Stream API 将列表转换为 Map
|
|
|
- Map<LocalDate, TourismProjectDatePriceVo> map = tourismProjectDatePriceVos.stream()
|
|
|
- .collect(Collectors.toMap(
|
|
|
- TourismProjectDatePriceVo::getDepartureDate, // key
|
|
|
- vo -> vo // value
|
|
|
- ));
|
|
|
- webSiteProjectDatePriceVo.setTourismProjectDatePriceVos(map);
|
|
|
- webSiteProjectDatePriceVo.setDateRange(dateRange);
|
|
|
+ public ResponseResult<WebSiteProjectDatePriceVo> view(@RequestParam Long projectId) {
|
|
|
+ WebSiteProjectDatePriceVo webSiteProjectDatePriceVo = tourismProjectToWebService.view(projectId);
|
|
|
return ResponseResult.success(webSiteProjectDatePriceVo);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 项目详情页面的预定接口
|
|
|
*
|
|
|
- * @param tourismBookProjectDto 预定项目的Dto
|
|
|
+ * @param tourBookInfoDto 预定项目的Dto
|
|
|
* @return 应答结果对象,包含对象详情。
|
|
|
*/
|
|
|
@PostMapping("/bookProject")
|
|
|
- public ResponseResult<Void> view(HttpServletRequest request,@RequestBody TourismBookProjectDto tourismBookProjectDto) {
|
|
|
- //获取用户的手机号
|
|
|
- Long userId = TokenData.takeFromRequest().getUserId();
|
|
|
- TourUser tourUser = tourUserService.getById(userId);
|
|
|
- String mobile = tourUser.getMobile();
|
|
|
-
|
|
|
- //根据当前日期,查询当天的项目日历价格
|
|
|
- TourismDatePrice tourismDatePrice = new TourismDatePrice();
|
|
|
-// tourismDatePrice.setDepartureDate(MyDateUtil.truncateToDay(new Date()));
|
|
|
- tourismDatePrice.setProjectId(tourismBookProjectDto.getProjectId());
|
|
|
- tourismDatePrice.setDepartureDate(tourismBookProjectDto.getStartDate());
|
|
|
- TourismDatePrice tourismDatePriceOne = tourismDatePriceService.getOne(tourismDatePrice);
|
|
|
-
|
|
|
- //构建预定的数据进行保存
|
|
|
- TourBookInfo tourBookInfo = new TourBookInfo();
|
|
|
- tourBookInfo.setType(tourismBookProjectDto.getType());
|
|
|
- tourBookInfo.setProjectId(tourismBookProjectDto.getProjectId());
|
|
|
- tourBookInfo.setAdultNumber(tourismBookProjectDto.getAdultNumber());
|
|
|
- tourBookInfo.setChildrenNumber(tourismBookProjectDto.getChildrenNumber());
|
|
|
- tourBookInfo.setAdultPrice(tourismDatePriceOne.getAdultPrice());
|
|
|
- tourBookInfo.setChildrenPrice(tourismDatePriceOne.getChildrenPrice());
|
|
|
- tourBookInfo.setBookMobile(mobile);
|
|
|
- tourBookInfo.setBookName(mobile);
|
|
|
- tourBookInfo.setBookTime(tourismBookProjectDto.getStartDate());
|
|
|
- tourBookInfo.setTotalPrice( tourismDatePriceOne.getAdultPrice().multiply(BigDecimal.valueOf(tourismBookProjectDto.getAdultNumber()))
|
|
|
- .add(tourismDatePriceOne.getChildrenPrice().multiply(BigDecimal.valueOf(tourismBookProjectDto.getChildrenNumber()))));
|
|
|
-// tourBookInfo.setBookIp(IpUtil.getRemoteIpAddress(request));
|
|
|
-
|
|
|
- tourBookInfoService.saveNew(tourBookInfo);
|
|
|
- return ResponseResult.success();
|
|
|
+ public ResponseResult<Integer> bookProject(HttpServletRequest request,@MyRequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
+ String errorMessage = MyCommonUtil.getModelValidationError(tourBookInfoDto, Default.class, UpdateGroup.class);
|
|
|
+ if (errorMessage != null) {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
+ }
|
|
|
+ Boolean state = tourismProjectToWebService.bookProject(request, tourBookInfoDto);
|
|
|
+ if(!state){
|
|
|
+ return ResponseResult.success(2);
|
|
|
+ }
|
|
|
+ return ResponseResult.success(1);
|
|
|
}
|
|
|
|
|
|
}
|