1. 支付完成之后再减次数

This commit is contained in:
邱贞招 2024-09-06 20:01:45 +08:00
parent f4fecd8827
commit a09cec2993
4 changed files with 51 additions and 23 deletions

View File

@ -1408,4 +1408,29 @@ public class AppVerifyController extends BaseController
}
return toAjax(etOrderService.useCoupon(orderNo,logId));
}
/**
* 0元订单处理
*/
@Log(title = "0元订单处理", businessType = BusinessType.ZEROORDER)
@PostMapping("/zeroOrder")
public AjaxResult zeroOrder(String orderNo)
{
logger.info("0元订单处理【orderNo="+orderNo+"");
EtOrder order = etOrderService.selectEtOrderByOrderNo(orderNo);
// 骑行结束并且订单金额等于0并且未支付
if(ServiceConstants.ORDER_STATUS_RIDING_END.equals(order.getStatus()) && order.getTotalFee().compareTo(BigDecimal.ZERO) == 0 && order.getPaid().equals(ServiceConstants.ORDER_PAY_STATUS_NON_PAYMENT)){
order.setPaid(ServiceConstants.ORDER_PAY_STATUS_PAID);
order.setPayTime(new Date());
order.setPayType(ServiceConstants.PAY_TYPE_SYS);
order.setStatus(ServiceConstants.ORDER_STATUS_ORDER_END);
int updateEtOrder = etOrderMapper.updateEtOrder(order);
if(updateEtOrder == 0){
throw new ServiceException("更新订单outTradeNo失败");
}else {
logger.info("【isInOrder接口】更新订单outTradeNo成功");
}
}
return toAjax(1);
}
}

View File

@ -206,4 +206,9 @@ public enum BusinessType
* 使用优惠券
*/
USECOUPON,
/**
* 0元订单
*/
ZEROORDER,
}

View File

@ -6,7 +6,6 @@ import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ruoyi.common.constant.CacheConstants;
import com.ruoyi.common.constant.Constants;
import com.ruoyi.common.constant.ServiceConstants;
@ -198,6 +197,16 @@ public class CallbackServiceImpl implements CallbackService {
order.setPayTime(DateUtils.getNowDate());
order.setPayType(ServiceConstants.PAY_TYPE_WX);
order.setLocking("0");
// 如果使用了优惠券则扣除一次使用次数
if(ObjectUtil.isNotNull(order.getLogId())){
EtCouponUserLog couponUserLog = etCouponClaimLogMapper.selectEtCouponClaimLogByLogId(order.getLogId());
EtCoupon etCoupon = etCouponMapper.selectEtCouponByCouponId(couponUserLog.getCouponId());
logger.info("【微信支付回调】优惠券信息 : " + JSON.toJSONString(etCoupon));
if(ObjectUtil.isNotNull(etCoupon) && (etCoupon.getType().equals(ServiceConstants.COUPON_TYPE_DISCOUNT_CARD) || etCoupon.getType().equals(ServiceConstants.COUPON_TYPE_VOUCHER)) && couponUserLog.getLimitNum() > 0){
etCouponClaimLogMapper.deductLimitNum(couponUserLog.getLogId());
logger.info("【微信支付回调】优惠券使用次数-1");
}
}
if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_RIDING)){
logger.info("【微信支付回调】骑行支付");
// 1-骑行支付 关锁

View File

@ -1813,19 +1813,6 @@ public class EtOrderServiceImpl implements IEtOrderService
if(ObjectUtil.isNotNull(etCoupon)){
order.setCoupon(etCoupon);
}
// 骑行结束并且订单金额等于0并且未支付
if(ServiceConstants.ORDER_STATUS_RIDING_END.equals(order.getStatus()) && order.getTotalFee().compareTo(BigDecimal.ZERO) == 0 && order.getPaid().equals(ServiceConstants.ORDER_PAY_STATUS_NON_PAYMENT)){
order.setPaid(ServiceConstants.ORDER_PAY_STATUS_PAID);
order.setPayTime(new Date());
order.setPayType(ServiceConstants.PAY_TYPE_SYS);
order.setStatus(ServiceConstants.ORDER_STATUS_ORDER_END);
int updateEtOrder = etOrderMapper.updateEtOrder(order);
if(updateEtOrder == 0){
throw new ServiceException("更新订单outTradeNo失败");
}else {
log.info("【isInOrder接口】更新订单outTradeNo成功");
}
}
}
return inOrder;
}
@ -2020,14 +2007,20 @@ public class EtOrderServiceImpl implements IEtOrderService
* 抵用券总金额 - 抵用金额 次数减一
*/
private EtOrder calculateCoupon(EtOrder order,Long logId) {
Long couponId = order.getCouponId();
EtCoupon etCoupon = etCouponMapper.selectEtCouponByCouponId(couponId);
Long userId = order.getUserId();
AsUser asUser = asUserMapper.selectUserById(userId);
log.info("【用户】:【{}】",JSON.toJSON(asUser));
EtCouponUserLog etCouponUserLog1 = etCouponClaimLogMapper.selectEtCouponClaimLogByLogId(logId);
if(etCoupon.getType().equals(asUser.getVipType()) || asUser.getExpirationTime().compareTo(new Date()) < 0){
log.info("【使用优惠券】优惠券信息:【{}】",JSON.toJSON(etCouponUserLog1));
EtCoupon etCoupon = etCouponMapper.selectEtCouponByCouponId(etCouponUserLog1.getCouponId());
log.info("【优惠券】优惠券:【{}】",JSON.toJSON(etCoupon));
if(etCouponUserLog1 == null){
throw new ServiceException("用户没有优惠券");
}
if(etCoupon == null){
throw new ServiceException("优惠券不存在");
}
if(ObjectUtil.isNotNull(asUser.getExpirationTime()) && asUser.getExpirationTime().compareTo(new Date()) < 0){
throw new ServiceException("会员已过期");
}
@ -2053,10 +2046,6 @@ public class EtOrderServiceImpl implements IEtOrderService
throw new ServiceException("优惠券类型错误");
}
// 扣除一次使用次数
if(etCoupon.getType().equals(ServiceConstants.COUPON_TYPE_DISCOUNT_CARD) || etCoupon.getType().equals(ServiceConstants.COUPON_TYPE_VOUCHER) && etCouponUserLog1.getLimitNum() > 0){
etCouponClaimLogMapper.deductLimitNum(etCouponUserLog1.getLogId());
}
return order;
}