|
@@ -2,17 +2,20 @@ package com.tourism.webadmin.app.website.controller;
|
|
|
|
|
|
import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
import com.tourism.common.core.constant.ErrorCodeEnum;
|
|
|
+import com.tourism.common.core.exception.MyRuntimeException;
|
|
|
import com.tourism.common.core.object.MyOrderParam;
|
|
|
import com.tourism.common.core.object.MyPageData;
|
|
|
import com.tourism.common.core.object.ResponseResult;
|
|
|
import com.tourism.common.core.object.TokenData;
|
|
|
import com.tourism.common.core.util.MyCommonUtil;
|
|
|
+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.validator.AddGroup;
|
|
|
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.model.constant.TourOrderState;
|
|
|
import com.tourism.webadmin.back.service.*;
|
|
|
import com.tourism.webadmin.back.vo.TourOrderPassenageVo;
|
|
|
import com.tourism.webadmin.back.vo.TourOrderVo;
|
|
@@ -27,6 +30,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Calendar;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -142,51 +146,51 @@ public class TourismOrderController {
|
|
|
if (errorMessage != null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
}
|
|
|
+ TourOrder tourOrder = MyModelUtil.copyTo(tourOrderDto, TourOrder.class);
|
|
|
|
|
|
// 赋值
|
|
|
- tourOrderDto.setCustomerName(tourBookInfoDto.getCustomerName());
|
|
|
- tourOrderDto.setDepartureDate(tourBookInfoDto.getStartDate());
|
|
|
- tourOrderDto.setAdultNumber(tourBookInfoDto.getAdultNumber());
|
|
|
- tourOrderDto.setChildrenNumber(tourBookInfoDto.getChildrenNumber());
|
|
|
- tourOrderDto.setProjectId(Long.valueOf(tourBookInfoDto.getProjectId()));
|
|
|
- tourOrderDto.setCustomerMobile(tourBookInfoDto.getCustomerMobile());
|
|
|
- tourOrderDto.setCustomerMobileStandby(tourBookInfoDto.getCustomerMobileStandby());
|
|
|
- tourOrderDto.setCustomerWechat(tourBookInfoDto.getCustomerWechat());
|
|
|
- tourOrderDto.setGroupPurchaseProgressId(tourBookInfoDto.getGroupId());
|
|
|
+ tourOrder.setCustomerName(tourBookInfoDto.getCustomerName());
|
|
|
+ tourOrder.setDepartureDate(tourBookInfoDto.getStartDate());
|
|
|
+ tourOrder.setAdultNumber(tourBookInfoDto.getAdultNumber());
|
|
|
+ tourOrder.setChildrenNumber(tourBookInfoDto.getChildrenNumber());
|
|
|
+ tourOrder.setProjectId(tourBookInfoDto.getProjectId());
|
|
|
+ tourOrder.setCustomerMobile(tourBookInfoDto.getCustomerMobile());
|
|
|
+ tourOrder.setCustomerMobileStandby(tourBookInfoDto.getCustomerMobileStandby());
|
|
|
+ tourOrder.setCustomerWechat(tourBookInfoDto.getCustomerWechat());
|
|
|
+ tourOrder.setGroupPurchaseProgressId(tourBookInfoDto.getGroupId());
|
|
|
|
|
|
- TourismProject tourismProject = tourismProjectService.getById(tourOrderDto.getProjectId());
|
|
|
+ TourismProject tourismProject = tourismProjectService.getById(tourOrder.getProjectId());
|
|
|
if (tourismProject == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
}
|
|
|
TourProjectGroupPurchase tourProjectGroupPurchase = null;
|
|
|
// 判断拼团ID是否为空,如果不为空,根据拼团ID处理拼团信息
|
|
|
if (tourBookInfoDto.getGroupId() != null) {
|
|
|
- tourProjectGroupPurchase = tourProjectGroupPurchaseService.handleGroupBuy(tourBookInfoDto, tourOrderDto);
|
|
|
+ tourProjectGroupPurchase = tourProjectGroupPurchaseService.handleGroupBuy(tourBookInfoDto, tourOrder);
|
|
|
// 有新用户团购,就需要修改历史订单的价格信息
|
|
|
- tourOrderService.updateHistoryOrderPrice(tourOrderDto);
|
|
|
+ tourOrderService.updateHistoryOrderPrice(tourOrder);
|
|
|
}else {
|
|
|
BigDecimal totalPrice;
|
|
|
//根据出发日期,计算订单金额
|
|
|
TourismDatePrice tourismDatePrice = new TourismDatePrice();
|
|
|
- tourismDatePrice.setProjectId(tourOrderDto.getProjectId().toString());
|
|
|
- tourismDatePrice.setOrderDate(tourOrderDto.getDepartureDate());
|
|
|
+ tourismDatePrice.setProjectId(tourOrder.getProjectId().toString());
|
|
|
+ tourismDatePrice.setOrderDate(tourOrder.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())));
|
|
|
+ totalPrice = tourismDatePriceList.get(0).getAdultPrice().multiply(BigDecimal.valueOf(tourOrder.getAdultNumber() == null?0:tourOrder.getAdultNumber())).
|
|
|
+ add(tourismDatePriceList.get(0).getChildrenPrice().multiply(BigDecimal.valueOf(tourOrder.getChildrenNumber() == null?0:tourOrder.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());
|
|
|
+ tourOrder.setTotalAmount(totalPrice);
|
|
|
+ tourOrder.setCurrency(tourismProject.getPriceUnit());
|
|
|
+ tourOrder.setAdultPrice(tourismDatePriceList.get(0).getAdultPrice());
|
|
|
+ tourOrder.setChildrenPrice(tourismDatePriceList.get(0).getChildrenPrice());
|
|
|
} else {
|
|
|
- tourOrderDto.setTotalAmount(BigDecimal.ZERO);
|
|
|
+ tourOrder.setTotalAmount(BigDecimal.ZERO);
|
|
|
}
|
|
|
}
|
|
|
- tourOrderDto.setProjectResume(tourismProject.getProjectTitle());
|
|
|
- tourOrderDto.setCountTimes(tourismProject.getCountTimes());
|
|
|
- tourOrderDto.setProjectTitle(tourismProject.getProjectTitle());
|
|
|
- TourOrder tourOrder = MyModelUtil.copyTo(tourOrderDto, TourOrder.class);
|
|
|
+ tourOrder.setProjectResume(tourismProject.getProjectTitle());
|
|
|
+ tourOrder.setCountTimes(tourismProject.getCountTimes());
|
|
|
+ tourOrder.setProjectTitle(tourismProject.getProjectTitle());
|
|
|
tourOrder.setOrderDate(new Date());
|
|
|
//订单状态(0,未确认;1,未完成;2,已完成)
|
|
|
tourOrder.setOrderStatus(0);
|
|
@@ -204,21 +208,39 @@ public class TourismOrderController {
|
|
|
@PostMapping("/delete")
|
|
|
public ResponseResult<Void> delete(@MyRequestBody String id) {
|
|
|
TourOrder tourOrder = tourOrderService.getById(Long.parseLong(id));
|
|
|
- //判断是否是登录人创建的数据
|
|
|
+
|
|
|
+ // 判断是否是登录人创建的数据
|
|
|
TokenData tokenData = TokenData.takeFromRequest();
|
|
|
if(!tourOrder.getCreateUserId().equals(tokenData.getUserId())){
|
|
|
return ResponseResult.error(ErrorCodeEnum.TOUR_ORDER_USER_ERROR);
|
|
|
}
|
|
|
+ // 非未确认状态订单不允许取消
|
|
|
+ if(!tourOrder.getOrderStatus().equals(TourOrderState.CONFIRMED)){
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.NON_UNCONFIRMED_ORDERS_CANNOT_BE_CANCELLED);
|
|
|
+ }
|
|
|
+ // 判断是不是参与了团购
|
|
|
+ if(tourOrder.getGroupPurchaseProgressId() != null){
|
|
|
+ // 如果参与了团购
|
|
|
+ // 超过拼团截止日期的不允许取消
|
|
|
+ TourProjectGroupPurchase groupPurchase = tourProjectGroupPurchaseService.getById(tourOrder.getGroupPurchaseProgressId());
|
|
|
+ Date newDate = MyDateUtil.AddDays(groupPurchase.getEndTime(), 1);
|
|
|
+ if (newDate.getTime() < System.currentTimeMillis()) {
|
|
|
+ throw new MyRuntimeException(ErrorCodeEnum.GROUP_BUYING_HAS_EXPIRED_CANNOT_BE_CANCELLED.getErrorMessage());
|
|
|
+ }
|
|
|
+ // 已经成团的不允许取消
|
|
|
+ if(groupPurchase.getSuccess() == 1){
|
|
|
+ throw new MyRuntimeException(ErrorCodeEnum.ALREADY_FORMED_A_GROUP_CANNOT_BE_CANCELLED.getErrorMessage());
|
|
|
+ }
|
|
|
+ tourProjectGroupPurchaseService.cancelGroupBuy(groupPurchase, tourOrder);
|
|
|
+ // 修改历史价格
|
|
|
+ tourOrderService.updateHistoryOrderPrice(tourOrder);
|
|
|
+ }
|
|
|
//判断id是否为有效id
|
|
|
if(tourOrder == null){
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
}
|
|
|
- //0,未确认;允许删除
|
|
|
- if (!tourOrder.getOrderStatus().equals(0)) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.TOUR_ORDER_STATUS_NOT_ALLOW,"请与平台负责人确认后,由后台客服进行删除。");
|
|
|
- } else {
|
|
|
- tourOrderService.removeById(id);
|
|
|
- }
|
|
|
+ tourOrder.setOrderStatus(TourOrderState.CANCELLED);
|
|
|
+ tourOrderService.updateById(tourOrder);
|
|
|
return ResponseResult.success();
|
|
|
}
|
|
|
}
|