|
@@ -15,14 +15,8 @@ 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.TourOrder;
|
|
|
-import com.tourism.webadmin.back.model.TourOrderPassenage;
|
|
|
-import com.tourism.webadmin.back.model.TourismDatePrice;
|
|
|
-import com.tourism.webadmin.back.model.TourismProject;
|
|
|
-import com.tourism.webadmin.back.service.TourOrderPassenageService;
|
|
|
-import com.tourism.webadmin.back.service.TourOrderService;
|
|
|
-import com.tourism.webadmin.back.service.TourismDatePriceService;
|
|
|
-import com.tourism.webadmin.back.service.TourismProjectService;
|
|
|
+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.TourismProjectVo;
|
|
@@ -62,6 +56,8 @@ public class TourismOrderController {
|
|
|
private TourismDatePriceService tourismDatePriceService;
|
|
|
@Autowired
|
|
|
private RedissonClient redissonClient;
|
|
|
+ @Autowired
|
|
|
+ private TourProjectGroupPurchaseService tourProjectGroupPurchaseService;
|
|
|
|
|
|
/**
|
|
|
* 列出符合过滤条件个人订单列表。
|
|
@@ -135,7 +131,45 @@ public class TourismOrderController {
|
|
|
* @return 应答结果对象,包含查询结果集。
|
|
|
*/
|
|
|
@PostMapping("/add")
|
|
|
- public ResponseResult<Integer> add(@MyRequestBody TourismBookProjectDto tourBookInfoDto) {
|
|
|
+ public ResponseResult<Integer> 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) {
|
|
@@ -145,8 +179,8 @@ public class TourismOrderController {
|
|
|
if (errorMessage != null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
}
|
|
|
- //类型转换
|
|
|
- TourOrderDto tourOrderDto = new TourOrderDto();
|
|
|
+
|
|
|
+ // 赋值
|
|
|
tourOrderDto.setCustomerName(tourBookInfoDto.getCustomerName());
|
|
|
tourOrderDto.setDepartureDate(tourBookInfoDto.getStartDate());
|
|
|
tourOrderDto.setAdultNumber(tourBookInfoDto.getAdultNumber());
|
|
@@ -155,6 +189,7 @@ public class TourismOrderController {
|
|
|
tourOrderDto.setCustomerMobile(tourBookInfoDto.getCustomerMobile());
|
|
|
tourOrderDto.setCustomerMobileStandby(tourBookInfoDto.getCustomerMobileStandby());
|
|
|
tourOrderDto.setCustomerWechat(tourBookInfoDto.getCustomerWechat());
|
|
|
+ tourOrderDto.setGroupPurchaseProgressId(tourBookInfoDto.getGroupId());
|
|
|
|
|
|
TourismProject tourismProject = tourismProjectService.getById(tourOrderDto.getProjectId());
|
|
|
if (tourismProject == null) {
|
|
@@ -215,6 +250,4 @@ public class TourismOrderController {
|
|
|
}
|
|
|
return ResponseResult.success();
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|