|
@@ -1,7 +1,5 @@
|
|
|
package com.tourism.webadmin.app.website.controller;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
|
|
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
import com.tourism.common.core.constant.ErrorCodeEnum;
|
|
|
import com.tourism.common.core.object.MyOrderParam;
|
|
@@ -12,19 +10,17 @@ import com.tourism.common.core.util.MyCommonUtil;
|
|
|
import com.tourism.common.core.util.MyModelUtil;
|
|
|
import com.tourism.common.core.util.MyPageUtil;
|
|
|
import com.tourism.common.core.validator.AddGroup;
|
|
|
-import com.tourism.common.core.validator.UpdateGroup;
|
|
|
import com.tourism.webadmin.app.website.dto.TourismBookProjectDto;
|
|
|
import com.tourism.webadmin.back.dto.TourOrderDto;
|
|
|
import com.tourism.webadmin.back.model.*;
|
|
|
import com.tourism.webadmin.back.service.*;
|
|
|
-import com.tourism.webadmin.back.vo.TourOrderVo;
|
|
|
import com.tourism.webadmin.back.vo.TourOrderPassenageVo;
|
|
|
+import com.tourism.webadmin.back.vo.TourOrderVo;
|
|
|
import com.tourism.webadmin.back.vo.TourismProjectVo;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
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.redisson.api.RBucket;
|
|
|
import org.redisson.api.RedissonClient;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -58,6 +54,8 @@ public class TourismOrderController {
|
|
|
private RedissonClient redissonClient;
|
|
|
@Autowired
|
|
|
private TourProjectGroupPurchaseService tourProjectGroupPurchaseService;
|
|
|
+ @Autowired
|
|
|
+ private TourProjectGroupPurchaseDetailService tourProjectGroupPurchaseDetailService;
|
|
|
|
|
|
/**
|
|
|
* 列出符合过滤条件个人订单列表。
|
|
@@ -78,7 +76,8 @@ public class TourismOrderController {
|
|
|
MyOrderParam myOrderParam = new MyOrderParam();
|
|
|
myOrderParam.add(new MyOrderParam.OrderInfo("createTime", false, null));
|
|
|
String orderBy = MyOrderParam.buildOrderBy(myOrderParam, TourOrder.class);
|
|
|
- List<TourOrder> tourOderList = tourOrderService.getTourOrderList(tourOder, orderBy);
|
|
|
+// List<TourOrder> tourOderList = tourOrderService.getTourOrderList(tourOder, orderBy);
|
|
|
+ List<TourOrder> tourOderList = tourOrderService.getTourOrderListWithRelation(tourOder, orderBy);
|
|
|
MyPageData<TourOrderVo> tourOderVoMyPageData = MyPageUtil.makeResponseData(tourOderList, TourOrderVo.class);
|
|
|
|
|
|
List<TourOrderVo> dataList = tourOderVoMyPageData.getDataList();
|
|
@@ -131,50 +130,14 @@ public class TourismOrderController {
|
|
|
* @return 应答结果对象,包含查询结果集。
|
|
|
*/
|
|
|
@PostMapping("/add")
|
|
|
- public ResponseResult<Integer> add(@RequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
+ public ResponseResult<TourProjectGroupPurchase> add(@RequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
+ // 如果有拼团,需要查询当前人数阶段价格、下阶段价格和距离到下个阶段的人数
|
|
|
TourOrderDto tourOrderDto = new TourOrderDto();
|
|
|
- // 判断拼团ID是否为空,如果不为空,根据拼团ID查询拼团信息,看拼团是否已经截止
|
|
|
- TourProjectGroupPurchase groupPurchase = null;
|
|
|
- if (tourBookInfoDto.getGroupId() != null) {
|
|
|
- groupPurchase = tourProjectGroupPurchaseService.getById(tourBookInfoDto.getGroupId());
|
|
|
- if (groupPurchase != null) {
|
|
|
- // 先判断下拼团信息是不是过期了
|
|
|
- if (groupPurchase.getEndTime().getTime() < System.currentTimeMillis()) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.GROUP_BUYING_HAS_EXPIRED);
|
|
|
- }
|
|
|
- }else {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.GROUP_BUYING_DOES_NOT_EXIST);
|
|
|
- }
|
|
|
- // 计算此次订单参加拼团人数
|
|
|
- Integer groupCount = tourBookInfoDto.getAdultNumber() + tourBookInfoDto.getChildrenNumber();
|
|
|
- // 判断人数是不是超了,如果超了或者人数满了,自动开个完全一样的新团,直接在新团上加数量
|
|
|
- if(groupCount + groupPurchase.getNowCount() >= groupPurchase.getMaxCount()) {
|
|
|
- // 复制团购设置
|
|
|
- TourProjectGroupPurchase newGroupPurchase = MyModelUtil.copyTo(groupPurchase, TourProjectGroupPurchase.class);
|
|
|
- newGroupPurchase.setId(null);
|
|
|
- newGroupPurchase.setNowCount(0);
|
|
|
|
|
|
- // 增加人数,修改原有数据
|
|
|
- if(groupCount + groupPurchase.getNowCount() == groupPurchase.getMaxCount()){
|
|
|
- groupPurchase.setNowCount(groupCount + groupPurchase.getNowCount());
|
|
|
- tourProjectGroupPurchaseService.updateById(groupPurchase);
|
|
|
- tourProjectGroupPurchaseService.save(newGroupPurchase);
|
|
|
- }else {
|
|
|
- newGroupPurchase.setNowCount(tourBookInfoDto.getAdultNumber() + tourBookInfoDto.getChildrenNumber());
|
|
|
- tourProjectGroupPurchaseService.save(newGroupPurchase);
|
|
|
- tourBookInfoDto.setGroupId(newGroupPurchase.getId());
|
|
|
- }
|
|
|
- }else {
|
|
|
- groupPurchase.setNowCount(groupCount + groupPurchase.getNowCount());
|
|
|
- tourProjectGroupPurchaseService.updateById(groupPurchase);
|
|
|
- }
|
|
|
- tourOrderDto.setType(1);
|
|
|
- }
|
|
|
-
|
|
|
- RBucket<Object> bucket = redissonClient.getBucket(tourBookInfoDto.getString().concat(tourBookInfoDto.getCustomerMobile()));
|
|
|
- if (bucket.get() != null) {
|
|
|
- return ResponseResult.success(2);
|
|
|
- }
|
|
|
+// RBucket<Object> bucket = redissonClient.getBucket(tourBookInfoDto.getString().concat(tourBookInfoDto.getCustomerMobile()));
|
|
|
+// if (bucket.get() != null) {
|
|
|
+// return ResponseResult.success(2);
|
|
|
+// }
|
|
|
String errorMessage = MyCommonUtil.getModelValidationError(tourBookInfoDto, Default.class, AddGroup.class);
|
|
|
if (errorMessage != null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
@@ -193,24 +156,32 @@ public class TourismOrderController {
|
|
|
|
|
|
TourismProject tourismProject = tourismProjectService.getById(tourOrderDto.getProjectId());
|
|
|
if (tourismProject == null) {
|
|
|
- return ResponseResult.success(2);
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
}
|
|
|
- BigDecimal totalPrice;
|
|
|
- //根据出发日期,计算订单金额
|
|
|
- TourismDatePrice tourismDatePrice = new TourismDatePrice();
|
|
|
- tourismDatePrice.setProjectId(tourOrderDto.getProjectId().toString());
|
|
|
- tourismDatePrice.setOrderDate(tourOrderDto.getDepartureDate());
|
|
|
- List<TourismDatePrice> tourismDatePriceList = tourismDatePriceService.getTourismDatePriceList(tourismDatePrice, "");
|
|
|
- if (CollectionUtils.isNotEmpty(tourismDatePriceList)) {
|
|
|
- totalPrice = tourismDatePriceList.get(0).getAdultPrice().multiply(BigDecimal.valueOf(tourOrderDto.getAdultNumber() == null?0:tourOrderDto.getAdultNumber())).
|
|
|
- add(tourismDatePriceList.get(0).getChildrenPrice().multiply(BigDecimal.valueOf(tourOrderDto.getChildrenNumber() == null?0:tourOrderDto.getChildrenNumber())));
|
|
|
+ TourProjectGroupPurchase tourProjectGroupPurchase = null;
|
|
|
+ // 判断拼团ID是否为空,如果不为空,根据拼团ID处理拼团信息
|
|
|
+ if (tourBookInfoDto.getGroupId() != null) {
|
|
|
+ tourProjectGroupPurchase = tourProjectGroupPurchaseService.handleGroupBuy(tourBookInfoDto, tourOrderDto);
|
|
|
+ // 有新用户团购,就需要修改历史订单的价格信息
|
|
|
+ tourOrderService.updateHistoryOrderPrice(tourOrderDto);
|
|
|
+ }else {
|
|
|
+ BigDecimal totalPrice;
|
|
|
+ //根据出发日期,计算订单金额
|
|
|
+ TourismDatePrice tourismDatePrice = new TourismDatePrice();
|
|
|
+ tourismDatePrice.setProjectId(tourOrderDto.getProjectId().toString());
|
|
|
+ tourismDatePrice.setOrderDate(tourOrderDto.getDepartureDate());
|
|
|
+ List<TourismDatePrice> tourismDatePriceList = tourismDatePriceService.getTourismDatePriceList(tourismDatePrice, "");
|
|
|
+ if (CollectionUtils.isNotEmpty(tourismDatePriceList)) {
|
|
|
+ totalPrice = tourismDatePriceList.get(0).getAdultPrice().multiply(BigDecimal.valueOf(tourOrderDto.getAdultNumber() == null?0:tourOrderDto.getAdultNumber())).
|
|
|
+ add(tourismDatePriceList.get(0).getChildrenPrice().multiply(BigDecimal.valueOf(tourOrderDto.getChildrenNumber() == null?0:tourOrderDto.getChildrenNumber())));
|
|
|
// tourOrderDto.setEndDate(DateUtils.addDays(tourismDatePrice.getOrderDate(),Integer.parseInt(tourismProject.getCountTimes())));
|
|
|
- tourOrderDto.setTotalAmount(totalPrice);
|
|
|
- tourOrderDto.setCurrency(tourismProject.getPriceUnit());
|
|
|
- tourOrderDto.setAdultPrice(tourismDatePriceList.get(0).getAdultPrice());
|
|
|
- tourOrderDto.setChildrenPrice(tourismDatePriceList.get(0).getChildrenPrice());
|
|
|
- } else {
|
|
|
- tourOrderDto.setTotalAmount(BigDecimal.ZERO);
|
|
|
+ tourOrderDto.setTotalAmount(totalPrice);
|
|
|
+ tourOrderDto.setCurrency(tourismProject.getPriceUnit());
|
|
|
+ tourOrderDto.setAdultPrice(tourismDatePriceList.get(0).getAdultPrice());
|
|
|
+ tourOrderDto.setChildrenPrice(tourismDatePriceList.get(0).getChildrenPrice());
|
|
|
+ } else {
|
|
|
+ tourOrderDto.setTotalAmount(BigDecimal.ZERO);
|
|
|
+ }
|
|
|
}
|
|
|
tourOrderDto.setProjectResume(tourismProject.getProjectTitle());
|
|
|
tourOrderDto.setCountTimes(tourismProject.getCountTimes());
|
|
@@ -220,8 +191,8 @@ public class TourismOrderController {
|
|
|
//订单状态(0,未确认;1,未完成;2,已完成)
|
|
|
tourOrder.setOrderStatus(0);
|
|
|
tourOrderService.saveNew(tourOrder);
|
|
|
- bucket.set("预约成功!");
|
|
|
- return ResponseResult.success(1);
|
|
|
+// bucket.set("预约成功!");
|
|
|
+ return ResponseResult.success(tourProjectGroupPurchase);
|
|
|
}
|
|
|
|
|
|
/**
|