卡券
This commit is contained in:
parent
5d91db94b1
commit
2cc3bb7948
|
@ -2,6 +2,8 @@ package com.ruoyi.web.controller.system;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
|
import com.ruoyi.ss.cardOrder.service.ICardOrderAssembler;
|
||||||
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
@ -36,6 +38,9 @@ public class CardOrderController extends BaseController
|
||||||
@Autowired
|
@Autowired
|
||||||
private ICardOrderService cardOrderService;
|
private ICardOrderService cardOrderService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ICardOrderAssembler cardOrderAssembler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询卡券订单列表
|
* 查询卡券订单列表
|
||||||
*/
|
*/
|
||||||
|
@ -46,6 +51,7 @@ public class CardOrderController extends BaseController
|
||||||
startPage();
|
startPage();
|
||||||
startOrderBy();
|
startOrderBy();
|
||||||
List<CardOrderVO> list = cardOrderService.selectCardOrderList(query);
|
List<CardOrderVO> list = cardOrderService.selectCardOrderList(query);
|
||||||
|
cardOrderAssembler.assembleAvailableRoom(list);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1370,5 +1370,19 @@ public class ServiceConstants {
|
||||||
public static final String VALIDITY_UNIT_YEAR = "year";
|
public static final String VALIDITY_UNIT_YEAR = "year";
|
||||||
/**----------------------------有效期单位end----------------------------*/
|
/**----------------------------有效期单位end----------------------------*/
|
||||||
|
|
||||||
|
/**---------------------------- 卡券类型 ----------------------------*/
|
||||||
|
/**
|
||||||
|
* 卡券类型:1-平台卡
|
||||||
|
*/
|
||||||
|
public static final String CARD_TYPE_PLATFORM = "1";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 卡券类型:2-商户卡
|
||||||
|
*/
|
||||||
|
public static final String CARD_TYPE_MERCHANT = "2";
|
||||||
|
|
||||||
|
/**---------------------------- 卡券类型 ----------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -262,20 +262,23 @@ public class CallbackServiceImpl implements ICallbackService {
|
||||||
4. 更新运营商账变
|
4. 更新运营商账变
|
||||||
*/
|
*/
|
||||||
Boolean execute = transactionTemplate.execute(e -> {
|
Boolean execute = transactionTemplate.execute(e -> {
|
||||||
|
String cardType;
|
||||||
if(appId.equals(cardOrderVO.getAppId())){
|
if(appId.equals(cardOrderVO.getAppId())){
|
||||||
//先判断是否是平台卡, 如果是平台卡,则只有等到卡券被使用后,已全部完成后,才能进行结算,
|
//先判断是否是平台卡, 如果是平台卡,则只有等到卡券被使用后,已全部完成后,才能进行结算,
|
||||||
//先到待结算余额,等用户卡券使用后,再将待结算余额转为可用余额 待结算金额
|
//先到待结算余额,等用户卡券使用后,再将待结算余额转为可用余额 待结算金额
|
||||||
// 更新商户待结算金额
|
// 更新商户待结算金额
|
||||||
int i = userService.updateUserUnsettledAmount(merchant.getUserId(), cardOrderVO.getPayFee());
|
int i = userService.updateUserUnsettledAmount(merchant.getUserId(), cardOrderVO.getPayFee());
|
||||||
ServiceUtil.assertion(i == 0, "【支付回调】卡券订单,更新商户待结算金额失败");
|
ServiceUtil.assertion(i == 0, "【支付回调】卡券订单,更新商户待结算金额失败");
|
||||||
|
cardType = CARD_TYPE_PLATFORM;
|
||||||
}else{
|
}else{
|
||||||
/* 记录账变 */
|
/* 记录账变 */
|
||||||
int i = changeBalanceService.generateChangeBalance(cardOrderVO.getOrderNo(), payBillVO.getOrderNo(), FLOW_TYPE_INCOME,
|
int i = changeBalanceService.generateChangeBalance(cardOrderVO.getOrderNo(), payBillVO.getOrderNo(), FLOW_TYPE_INCOME,
|
||||||
ServiceConstants.COUPON_INCOME, cardOrderVO.getPayFee(), merchant.getUserId(), merchant.getUserName(),
|
ServiceConstants.COUPON_INCOME, cardOrderVO.getPayFee(), merchant.getUserId(), merchant.getUserName(),
|
||||||
merchant.getPhonenumber(),merchant.getUserType());
|
merchant.getPhonenumber(),merchant.getUserType());
|
||||||
ServiceUtil.assertion(i == 0, "【支付回调】卡券订单,更新记录账变失败");
|
ServiceUtil.assertion(i == 0, "【支付回调】卡券订单,更新记录账变失败");
|
||||||
|
cardType = CARD_TYPE_MERCHANT;
|
||||||
}
|
}
|
||||||
saveUserCard(payTime, cardOrderVO);
|
saveUserCard(payTime, cardOrderVO, cardType);
|
||||||
updateCardOrder(cardOrderVO,payTime,payBillVO);
|
updateCardOrder(cardOrderVO,payTime,payBillVO);
|
||||||
logger.info("【支付回调】----------更新卡券订单表成功----------");
|
logger.info("【支付回调】----------更新卡券订单表成功----------");
|
||||||
|
|
||||||
|
@ -322,15 +325,18 @@ public class CallbackServiceImpl implements ICallbackService {
|
||||||
if(Boolean.FALSE.equals(execute))throw new ServiceException(" 0元订单处理失败");
|
if(Boolean.FALSE.equals(execute))throw new ServiceException(" 0元订单处理失败");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void saveUserCard(LocalDateTime payTime, CardOrderVO cardOrderVO) {
|
private void saveUserCard(LocalDateTime payTime, CardOrderVO cardOrderVO, String cardType) {
|
||||||
UserCard cardGetRecords = new UserCard();
|
UserCard cardGetRecords = new UserCard();
|
||||||
cardGetRecords.setStatus(ServiceConstants.CARD_STATUS_UNUSED);
|
cardGetRecords.setStatus(ServiceConstants.CARD_STATUS_UNUSED);
|
||||||
cardGetRecords.setUserId(cardOrderVO.getUserId());
|
cardGetRecords.setUserId(cardOrderVO.getUserId());
|
||||||
cardGetRecords.setCouponId(cardOrderVO.getCardId());
|
cardGetRecords.setCouponId(cardOrderVO.getCardId());
|
||||||
cardGetRecords.setGetMethod(COUPON_GET_PLATFORM_PURCHASE);
|
cardGetRecords.setGetMethod(COUPON_GET_PLATFORM_PURCHASE);
|
||||||
|
cardGetRecords.setOrderNo(cardOrderVO.getOrderNo());
|
||||||
cardGetRecords.setStoredAmount(cardOrderVO.getStoredAmount());
|
cardGetRecords.setStoredAmount(cardOrderVO.getStoredAmount());
|
||||||
cardGetRecords.setReceiveTime(payTime);
|
cardGetRecords.setReceiveTime(payTime);
|
||||||
cardGetRecords.setStartTime(payTime);
|
cardGetRecords.setStartTime(payTime);
|
||||||
|
cardGetRecords.setCardType(cardType);
|
||||||
|
cardGetRecords.setType(cardOrderVO.getType());
|
||||||
cardGetRecords.setEndTime(DateUtils.calculateEndTime(payTime, cardOrderVO.getValidityValue(), cardOrderVO.getValidityUnit()));
|
cardGetRecords.setEndTime(DateUtils.calculateEndTime(payTime, cardOrderVO.getValidityValue(), cardOrderVO.getValidityUnit()));
|
||||||
|
|
||||||
int cardInsertResult = userCardService.insertUserCard(cardGetRecords);
|
int cardInsertResult = userCardService.insertUserCard(cardGetRecords);
|
||||||
|
|
|
@ -142,13 +142,13 @@ public class CardOrder extends BaseEntity{
|
||||||
@ApiModelProperty("可使用周: 1、2、3、4、5、6")
|
@ApiModelProperty("可使用周: 1、2、3、4、5、6")
|
||||||
private List<String> availableWeek;
|
private List<String> availableWeek;
|
||||||
|
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "HH:mm:ss")
|
||||||
@Excel(name = "可用时间结束", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "可用时间结束", width = 30, dateFormat = "HH:mm:ss")
|
||||||
@ApiModelProperty("可用时间结束")
|
@ApiModelProperty("可用时间结束")
|
||||||
private LocalTime availableTimeEnd;
|
private LocalTime availableTimeEnd;
|
||||||
|
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "HH:mm:ss")
|
||||||
@Excel(name = "可用时间开始", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "可用时间开始", width = 30, dateFormat = "HH:mm:ss")
|
||||||
@ApiModelProperty("可用时间开始")
|
@ApiModelProperty("可用时间开始")
|
||||||
private LocalTime availableTimeStart;
|
private LocalTime availableTimeStart;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,19 @@
|
||||||
package com.ruoyi.ss.cardOrder.domain;
|
package com.ruoyi.ss.cardOrder.domain;
|
||||||
|
|
||||||
|
import com.ruoyi.common.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class CardOrderVO extends CardOrder{
|
public class CardOrderVO extends CardOrder{
|
||||||
|
|
||||||
|
@ApiModelProperty("商户")
|
||||||
|
private String merchantName;
|
||||||
|
|
||||||
|
@Excel(name = "可用房间")
|
||||||
|
@ApiModelProperty("可用房间")
|
||||||
|
private List<String> availableRoomName;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,47 +4,52 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.ruoyi.ss.cardOrder.mapper.CardOrderMapper">
|
<mapper namespace="com.ruoyi.ss.cardOrder.mapper.CardOrderMapper">
|
||||||
|
|
||||||
<resultMap type="CardOrderVO" id="CardOrderResult" autoMapping="true" />
|
<resultMap type="CardOrderVO" id="CardOrderResult" autoMapping="true" >
|
||||||
|
<result property="availableRooms" column="available_rooms" typeHandler="com.ruoyi.system.mapper.typehandler.LongSplitListTypeHandler"/>
|
||||||
|
<result property="availableWeek" column="available_week" typeHandler="com.ruoyi.system.mapper.typehandler.StringSplitListTypeHandler"/>
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
<sql id="selectCardOrderVo">
|
<sql id="selectCardOrderVo">
|
||||||
select
|
select
|
||||||
order_id,
|
co.order_id,
|
||||||
order_no,
|
co.order_no,
|
||||||
user_id,
|
co.user_id,
|
||||||
phone,
|
co.phone,
|
||||||
user_name,
|
co.user_name,
|
||||||
real_name,
|
co.real_name,
|
||||||
pay_time,
|
co.pay_time,
|
||||||
pay_type,
|
co.pay_type,
|
||||||
paid,
|
co.paid,
|
||||||
pay_id,
|
co.pay_id,
|
||||||
type,
|
co.type,
|
||||||
total_fee,
|
co.total_fee,
|
||||||
pay_fee,
|
co.pay_fee,
|
||||||
mark,
|
co.mark,
|
||||||
status,
|
co.status,
|
||||||
create_time,
|
co.create_time,
|
||||||
pay_channel,
|
co.pay_channel,
|
||||||
channel_name,
|
co.channel_name,
|
||||||
channel_cost,
|
co.channel_cost,
|
||||||
merchant_id,
|
co.merchant_id,
|
||||||
store_id,
|
m.user_name merchantName,
|
||||||
store_name,
|
co.store_id,
|
||||||
card_id,
|
co.store_name,
|
||||||
card_name,
|
co.card_id,
|
||||||
limit_num,
|
co.card_name,
|
||||||
stored_amount,
|
co.limit_num,
|
||||||
validity_value,
|
co.stored_amount,
|
||||||
validity_unit,
|
co.validity_value,
|
||||||
available_rooms,
|
co.validity_unit,
|
||||||
available_week,
|
co.available_rooms,
|
||||||
available_time_end,
|
co.available_week,
|
||||||
available_time_start,
|
co.available_time_end,
|
||||||
sku_id,
|
co.available_time_start,
|
||||||
hours,
|
co.sku_id,
|
||||||
app_id,
|
co.hours,
|
||||||
card_type
|
co.app_id,
|
||||||
from ss_card_order
|
co.card_type
|
||||||
|
from ss_card_order co
|
||||||
|
left join ss_user m on m.user_id = co.merchant_id
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<sql id="searchCondition">
|
<sql id="searchCondition">
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
package com.ruoyi.ss.cardOrder.service;
|
||||||
|
|
||||||
|
|
||||||
|
import com.ruoyi.ss.cardOrder.domain.CardOrderVO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 卡券订单组装器
|
||||||
|
* @author qzz
|
||||||
|
* 2024/4/29
|
||||||
|
*/
|
||||||
|
public interface ICardOrderAssembler {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询卡券订单列表
|
||||||
|
*
|
||||||
|
* @param list 卡券订单
|
||||||
|
* @return 卡券订单集合
|
||||||
|
*/
|
||||||
|
void assembleAvailableRoom(List<CardOrderVO> list);
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
package com.ruoyi.ss.cardOrder.service.impl;
|
||||||
|
|
||||||
|
import com.ruoyi.common.utils.collection.CollectionUtils;
|
||||||
|
import com.ruoyi.ss.cardOrder.domain.CardOrderVO;
|
||||||
|
import com.ruoyi.ss.cardOrder.service.ICardOrderAssembler;
|
||||||
|
import com.ruoyi.ss.room.domain.RoomVO;
|
||||||
|
import com.ruoyi.ss.room.service.IRoomService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author qzz
|
||||||
|
* 2024/4/29
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class CardOrderAssemblerImpl implements ICardOrderAssembler {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IRoomService roomService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询卡券订单列表
|
||||||
|
*
|
||||||
|
* @param list 卡券订单
|
||||||
|
* @return 卡券订单集合
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void assembleAvailableRoom(List<CardOrderVO> list) {
|
||||||
|
if (CollectionUtils.isEmpty(list)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 1. 收集所有房间ID(去重)
|
||||||
|
Set<Long> roomIds = list.stream()
|
||||||
|
.filter(order -> CollectionUtils.isNotEmpty(order.getAvailableRooms()))
|
||||||
|
.flatMap(order -> order.getAvailableRooms().stream())
|
||||||
|
.collect(Collectors.toSet());
|
||||||
|
|
||||||
|
if (CollectionUtils.isEmpty(roomIds)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. 批量查询房间信息
|
||||||
|
Map<Long, String> roomIdNameMap = roomService.selectERoomByRoomIds(new ArrayList<>(roomIds))
|
||||||
|
.stream()
|
||||||
|
.collect(Collectors.toMap(RoomVO::getRoomId, RoomVO::getRoomName));
|
||||||
|
|
||||||
|
// 3. 组装房间名称列表
|
||||||
|
list.forEach(order -> {
|
||||||
|
if (CollectionUtils.isNotEmpty(order.getAvailableRooms())) {
|
||||||
|
order.setAvailableRoomName(
|
||||||
|
order.getAvailableRooms().stream()
|
||||||
|
.map(roomId -> roomIdNameMap.getOrDefault(roomId, "未知房间"))
|
||||||
|
.collect(Collectors.toList())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -87,7 +87,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
o.refund_duration,
|
o.refund_duration,
|
||||||
o.reminder_time,
|
o.reminder_time,
|
||||||
o.is_reminded,
|
o.is_reminded,
|
||||||
o.app_id
|
o.app_id,
|
||||||
|
o.user_card_id
|
||||||
FROM
|
FROM
|
||||||
ss_order o
|
ss_order o
|
||||||
left join ss_user u on o.user_id = u.user_id
|
left join ss_user u on o.user_id = u.user_id
|
||||||
|
@ -496,6 +497,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="productName != null">product_name,</if>
|
<if test="productName != null">product_name,</if>
|
||||||
<if test="reminderTime != null">reminder_time,</if>
|
<if test="reminderTime != null">reminder_time,</if>
|
||||||
<if test="appId != null">app_id,</if>
|
<if test="appId != null">app_id,</if>
|
||||||
|
<if test="userCardId != null">user_card_id,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="orderNo != null and orderNo != ''">#{orderNo},</if>
|
<if test="orderNo != null and orderNo != ''">#{orderNo},</if>
|
||||||
|
@ -560,6 +562,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="productName != null">#{productName},</if>
|
<if test="productName != null">#{productName},</if>
|
||||||
<if test="reminderTime != null">#{reminderTime},</if>
|
<if test="reminderTime != null">#{reminderTime},</if>
|
||||||
<if test="appId != null">#{appId},</if>
|
<if test="appId != null">#{appId},</if>
|
||||||
|
<if test="userCardId != null">#{userCardId},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -636,6 +639,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="reminderTime != null">reminder_time = #{reminderTime},</if>
|
<if test="reminderTime != null">reminder_time = #{reminderTime},</if>
|
||||||
<if test="isReminded != null">is_reminded = #{isReminded},</if>
|
<if test="isReminded != null">is_reminded = #{isReminded},</if>
|
||||||
<if test="appId != null">app_id = #{appId},</if>
|
<if test="appId != null">app_id = #{appId},</if>
|
||||||
|
<if test="userCardId != null">user_card_id = #{userCardId}</if>
|
||||||
</trim>
|
</trim>
|
||||||
where order_id = #{orderId}
|
where order_id = #{orderId}
|
||||||
</update>
|
</update>
|
||||||
|
@ -707,6 +711,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="reminderTime != null">reminder_time = #{reminderTime},</if>
|
<if test="reminderTime != null">reminder_time = #{reminderTime},</if>
|
||||||
<if test="isReminded != null">is_reminded = #{isReminded},</if>
|
<if test="isReminded != null">is_reminded = #{isReminded},</if>
|
||||||
<if test="appId != null">app_id = #{appId},</if>
|
<if test="appId != null">app_id = #{appId},</if>
|
||||||
|
<if test="userCardId != null">user_card_id = #{userCardId}</if>
|
||||||
</trim>
|
</trim>
|
||||||
where order_no = #{orderNo}
|
where order_no = #{orderNo}
|
||||||
</update>
|
</update>
|
||||||
|
|
|
@ -195,6 +195,9 @@ public class OrderServiceImpl implements IOrderService
|
||||||
@Value("${aliyun.templateCode3}")
|
@Value("${aliyun.templateCode3}")
|
||||||
private String templateCode3;
|
private String templateCode3;
|
||||||
|
|
||||||
|
@Value("${wx.appid}")
|
||||||
|
private String appId;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IStoreService storeService;
|
private IStoreService storeService;
|
||||||
|
|
||||||
|
@ -696,103 +699,6 @@ public class OrderServiceImpl implements IOrderService
|
||||||
throw new ServiceException("非法的订单类型");
|
throw new ServiceException("非法的订单类型");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 优惠券处理逻辑
|
|
||||||
if (orderBO.getUserCardVO() != null) {
|
|
||||||
UserCardVO cardVO = orderBO.getUserCardVO();
|
|
||||||
SsCardVO ssCardVO = cardService.selectSsCardByCouponId(cardVO.getCouponId());
|
|
||||||
|
|
||||||
order.setUserCardId(cardVO.getRecordId());
|
|
||||||
|
|
||||||
// 基础校验
|
|
||||||
cardUsePreCheck(orderBO, ssCardVO);
|
|
||||||
|
|
||||||
// 创建更新对象
|
|
||||||
UserCard updatedUserCard = new UserCard();
|
|
||||||
updatedUserCard.setRecordId(cardVO.getRecordId());
|
|
||||||
|
|
||||||
// 根据卡券类型处理
|
|
||||||
CouponType type = CouponType.fromCode(ssCardVO.getType());
|
|
||||||
switch (type) {
|
|
||||||
case STORED_VALUE_CARD:
|
|
||||||
handleStoredValueCard(order, cardVO, updatedUserCard);
|
|
||||||
break;
|
|
||||||
case HOUR_CARD:
|
|
||||||
handleHourCard(order, cardVO, updatedUserCard);
|
|
||||||
break;
|
|
||||||
case TIMES_CARD:
|
|
||||||
handleTimesCard(order, cardVO, updatedUserCard);
|
|
||||||
break;
|
|
||||||
case GROUP_BUYING:
|
|
||||||
handleGroupBuyingCoupon(order, ssCardVO, updatedUserCard);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 更新卡券信息
|
|
||||||
int result = userCardService.updateUserCard(updatedUserCard);
|
|
||||||
ServiceUtil.assertion(result == 0, "更新卡券余额失败");
|
|
||||||
if(CARD_STATUS_USED.equals(updatedUserCard.getStatus())){// 如果卡券使用后,则处理商户结算金额
|
|
||||||
// updatedUserCard.get
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
// if(orderBO.getUserCardVO() != null){
|
|
||||||
// UserCardVO cardVO = orderBO.getUserCardVO();
|
|
||||||
// SsCardVO ssCardVO = cardService.selectSsCardByCouponId(cardVO.getCouponId());
|
|
||||||
//
|
|
||||||
// // 使用前校验
|
|
||||||
// cardUsePreCheck(orderBO, ssCardVO);
|
|
||||||
//
|
|
||||||
// String type = ssCardVO.getType();
|
|
||||||
// UserCard updatedUserCard = new UserCard();
|
|
||||||
// updatedUserCard.setCouponId(cardVO.getCouponId());
|
|
||||||
//
|
|
||||||
// if(COUPON_ORDER_TYPE_STORED_VALUE_CARD.equals(type)){// 储值卡 剩余金额是否大于订单支付价格,如果大于订单支付价格则可以使用,如果不是则不可用
|
|
||||||
// ServiceUtil.assertion(cardVO.getStoredAmount().compareTo(order.getPayFee()) < 0, "储值卡余额不足");
|
|
||||||
// BigDecimal subtract = cardVO.getStoredAmount().subtract(order.getPayFee());
|
|
||||||
// order.setPayFee(BigDecimal.ZERO);
|
|
||||||
//
|
|
||||||
// updatedUserCard.setStoredAmount(subtract);
|
|
||||||
// if(subtract.compareTo(BigDecimal.ZERO) == 0){
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USED);
|
|
||||||
// }else{
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USING);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// }else if(COUPON_ORDER_TYPE_HOUR_CARD.equals(type)){// 小时卡
|
|
||||||
// ServiceUtil.assertion(cardVO.getRemainingHours() - order.getDuration() < 0, "可使用小时不足");
|
|
||||||
// order.setPayFee(BigDecimal.ZERO);
|
|
||||||
// updatedUserCard.setRemainingHours(cardVO.getRemainingHours() - order.getDuration());
|
|
||||||
// updatedUserCard.setUsedHours(cardVO.getUsedHours() + order.getDuration());
|
|
||||||
// if(cardVO.getRemainingHours() - order.getDuration() == 0){
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USED);
|
|
||||||
// }else{
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USING);
|
|
||||||
// }
|
|
||||||
// }else if(COUPON_ORDER_TYPE_TIMES_CARD.equals(type)){// 次卡
|
|
||||||
// ServiceUtil.assertion(cardVO.getRemainingTimes() < 1, "可使用次数不足");
|
|
||||||
// order.setPayFee(BigDecimal.ZERO);
|
|
||||||
// updatedUserCard.setRemainingTimes(cardVO.getRemainingTimes() - 1);
|
|
||||||
// updatedUserCard.setUsedTimes(cardVO.getUsedTimes() + 1);
|
|
||||||
// if(cardVO.getRemainingTimes() == 0){
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USED);
|
|
||||||
// }else{
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USING);
|
|
||||||
// }
|
|
||||||
// }else if(COUPON_ORDER_TYPE_GROUP_BUYING_COUPON.equals(type)){// 团购券
|
|
||||||
// BigDecimal subtract = order.getPayFee().subtract(ssCardVO.getStoredAmount());
|
|
||||||
// if(subtract.compareTo(BigDecimal.ZERO) < 0){
|
|
||||||
// subtract = BigDecimal.ZERO;
|
|
||||||
// }
|
|
||||||
// order.setPayFee(subtract);
|
|
||||||
// updatedUserCard.setStoredAmount(BigDecimal.ZERO);
|
|
||||||
// updatedUserCard.setStatus(CARD_STATUS_USED);
|
|
||||||
// updatedUserCard.setUsedAmount(ssCardVO.getStoredAmount());
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// int i = userCardService.updateUserCard(updatedUserCard);
|
|
||||||
// ServiceUtil.assertion(i == 0, "更新卡券余额失败");
|
|
||||||
// }
|
|
||||||
|
|
||||||
//基本信息
|
//基本信息
|
||||||
order.setCreateTime(DateUtils.getNowDate());
|
order.setCreateTime(DateUtils.getNowDate());
|
||||||
order.setOrderNo(orderNo);
|
order.setOrderNo(orderNo);
|
||||||
|
@ -831,9 +737,58 @@ public class OrderServiceImpl implements IOrderService
|
||||||
order.setAutoCancelTime(DateUtils.getTimeAfterXMinutes(order.getCreateTime(),Integer.parseInt(configByKey)));
|
order.setAutoCancelTime(DateUtils.getTimeAfterXMinutes(order.getCreateTime(),Integer.parseInt(configByKey)));
|
||||||
// 校验
|
// 校验
|
||||||
ServiceUtil.assertion(orderValidator.afterAddOrder(order));
|
ServiceUtil.assertion(orderValidator.afterAddOrder(order));
|
||||||
|
|
||||||
|
// 优惠券处理逻辑
|
||||||
|
couponHandle(orderBO, order);
|
||||||
return order;
|
return order;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void couponHandle(OrderBO orderBO, Order order) {
|
||||||
|
if (orderBO.getUserCardVO() != null) {
|
||||||
|
UserCardVO cardVO = orderBO.getUserCardVO();
|
||||||
|
SsCardVO ssCardVO = cardService.selectSsCardByCouponId(cardVO.getCouponId());
|
||||||
|
|
||||||
|
order.setUserCardId(cardVO.getRecordId());
|
||||||
|
|
||||||
|
// 基础校验
|
||||||
|
cardUsePreCheck(orderBO, ssCardVO);
|
||||||
|
|
||||||
|
// 创建更新对象
|
||||||
|
UserCard updatedUserCard = new UserCard();
|
||||||
|
updatedUserCard.setRecordId(cardVO.getRecordId());
|
||||||
|
|
||||||
|
// 根据卡券类型处理
|
||||||
|
CouponType type = CouponType.fromCode(ssCardVO.getType());
|
||||||
|
switch (type) {
|
||||||
|
case STORED_VALUE_CARD:
|
||||||
|
handleStoredValueCard(order, cardVO, updatedUserCard);
|
||||||
|
break;
|
||||||
|
case HOUR_CARD:
|
||||||
|
handleHourCard(order, cardVO, updatedUserCard);
|
||||||
|
break;
|
||||||
|
case TIMES_CARD:
|
||||||
|
handleTimesCard(order, cardVO, updatedUserCard);
|
||||||
|
break;
|
||||||
|
case GROUP_BUYING:
|
||||||
|
handleGroupBuyingCoupon(order, ssCardVO, updatedUserCard);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新卡券信息
|
||||||
|
int result = userCardService.updateUserCard(updatedUserCard);
|
||||||
|
ServiceUtil.assertion(result == 0, "更新卡券余额失败");
|
||||||
|
if(CARD_STATUS_USED.equals(updatedUserCard.getStatus())){// 如果卡券使用后,则处理商户结算金额
|
||||||
|
UserVO merchant = orderBO.getMerchant();
|
||||||
|
BigDecimal retailPrice = ssCardVO.getRetailPrice();
|
||||||
|
merchant.setUnsettledAmount(merchant.getUnsettledAmount().subtract(retailPrice));
|
||||||
|
merchant.setBalance(merchant.getBalance().add(retailPrice));
|
||||||
|
merchant.setUserId(merchant.getUserId());
|
||||||
|
int i = userService.updateUser(merchant);
|
||||||
|
ServiceUtil.assertion(i == 0, "更新商户结算金额失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 储值卡处理
|
// 储值卡处理
|
||||||
private void handleStoredValueCard(Order order, UserCardVO cardVO, UserCard updatedUserCard) {
|
private void handleStoredValueCard(Order order, UserCardVO cardVO, UserCard updatedUserCard) {
|
||||||
ServiceUtil.assertion(cardVO.getStoredAmount().compareTo(order.getPayFee()) < 0,"储值卡余额不足");
|
ServiceUtil.assertion(cardVO.getStoredAmount().compareTo(order.getPayFee()) < 0,"储值卡余额不足");
|
||||||
|
@ -935,6 +890,11 @@ public class OrderServiceImpl implements IOrderService
|
||||||
cardOrder.setPayFee(orderBO.getCard().getRetailPrice());
|
cardOrder.setPayFee(orderBO.getCard().getRetailPrice());
|
||||||
cardOrder.setStoredAmount(orderBO.getCard().getStoredAmount());
|
cardOrder.setStoredAmount(orderBO.getCard().getStoredAmount());
|
||||||
cardOrder.setAppId(orderBO.getApp().getConfig().getAppId());
|
cardOrder.setAppId(orderBO.getApp().getConfig().getAppId());
|
||||||
|
cardOrder.setCardType(
|
||||||
|
appId.equals(orderBO.getApp().getConfig().getAppId())
|
||||||
|
? CARD_TYPE_PLATFORM
|
||||||
|
: CARD_TYPE_MERCHANT
|
||||||
|
);
|
||||||
|
|
||||||
//用户
|
//用户
|
||||||
cardOrder.setUserId(orderBO.getUser().getUserId());
|
cardOrder.setUserId(orderBO.getUser().getUserId());
|
||||||
|
@ -963,6 +923,7 @@ public class OrderServiceImpl implements IOrderService
|
||||||
cardOrder.setAvailableTimeEnd(orderBO.getCard().getAvailableTimeEnd());
|
cardOrder.setAvailableTimeEnd(orderBO.getCard().getAvailableTimeEnd());
|
||||||
cardOrder.setSkuId(orderBO.getCard().getSkuId());
|
cardOrder.setSkuId(orderBO.getCard().getSkuId());
|
||||||
cardOrder.setHours(orderBO.getCard().getHours());
|
cardOrder.setHours(orderBO.getCard().getHours());
|
||||||
|
|
||||||
return cardOrder;
|
return cardOrder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,10 @@ public class UserCard extends BaseEntity{
|
||||||
@ApiModelProperty("获取方式")
|
@ApiModelProperty("获取方式")
|
||||||
private String getMethod;
|
private String getMethod;
|
||||||
|
|
||||||
|
@Excel(name = "订单号")
|
||||||
|
@ApiModelProperty("订单号")
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
@Excel(name = "状态")
|
@Excel(name = "状态")
|
||||||
@ApiModelProperty("状态")
|
@ApiModelProperty("状态")
|
||||||
private String status;
|
private String status;
|
||||||
|
@ -75,4 +79,7 @@ public class UserCard extends BaseEntity{
|
||||||
@ApiModelProperty("卡券归属类型:1-平台卡;2-商户卡")
|
@ApiModelProperty("卡券归属类型:1-平台卡;2-商户卡")
|
||||||
private String cardType;
|
private String cardType;
|
||||||
|
|
||||||
|
@ApiModelProperty("类型:1-储值卡;2-小时卡;3-团购券;4-次卡")
|
||||||
|
private String type;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
cr.remaining_hours,
|
cr.remaining_hours,
|
||||||
cr.used_times,
|
cr.used_times,
|
||||||
cr.used_amount,
|
cr.used_amount,
|
||||||
cr.used_hours
|
cr.used_hours,
|
||||||
|
cr.card_type,
|
||||||
|
cr.type
|
||||||
from ss_user_card cr
|
from ss_user_card cr
|
||||||
left join ss_user u on cr.user_id = u.user_id
|
left join ss_user u on cr.user_id = u.user_id
|
||||||
left join ss_card c on cr.coupon_id = c.coupon_id
|
left join ss_card c on cr.coupon_id = c.coupon_id
|
||||||
|
@ -67,6 +69,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="usedTimes != null">used_times,</if>
|
<if test="usedTimes != null">used_times,</if>
|
||||||
<if test="usedAmount != null">used_amount,</if>
|
<if test="usedAmount != null">used_amount,</if>
|
||||||
<if test="usedHours != null">used_hours,</if>
|
<if test="usedHours != null">used_hours,</if>
|
||||||
|
<if test="cardType != null and cardType != ''">card_type,</if>
|
||||||
|
<if test="type != null and type != ''">type,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="userId != null">#{userId},</if>
|
<if test="userId != null">#{userId},</if>
|
||||||
|
@ -82,6 +86,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="usedTimes != null">#{usedTimes},</if>
|
<if test="usedTimes != null">#{usedTimes},</if>
|
||||||
<if test="usedAmount != null">#{usedAmount},</if>
|
<if test="usedAmount != null">#{usedAmount},</if>
|
||||||
<if test="usedHours != null">#{usedHours},</if>
|
<if test="usedHours != null">#{usedHours},</if>
|
||||||
|
<if test="cardType != null and cardType != ''">#{cardType},</if>
|
||||||
|
<if test="type != null and type != ''">#{type},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -107,6 +113,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="data.usedTimes != null">used_times = #{data.usedTimes},</if>
|
<if test="data.usedTimes != null">used_times = #{data.usedTimes},</if>
|
||||||
<if test="data.usedAmount != null">used_amount = #{data.usedAmount},</if>
|
<if test="data.usedAmount != null">used_amount = #{data.usedAmount},</if>
|
||||||
<if test="data.usedHours != null">used_hours = #{data.usedHours},</if>
|
<if test="data.usedHours != null">used_hours = #{data.usedHours},</if>
|
||||||
|
<if test="data.cardType != null and data.cardType != ''">card_type = #{data.cardType},</if>
|
||||||
|
<if test="data.type != null and data.type != ''">type = #{data.type},</if>
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<delete id="deleteUserCardById" parameterType="Long">
|
<delete id="deleteUserCardById" parameterType="Long">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user