|
@@ -18,12 +18,14 @@ import cn.newfeifan.mall.module.pay.dal.dataobject.order.PayOrderDO;
|
|
import cn.newfeifan.mall.module.pay.dal.dataobject.refund.PayRefundDO;
|
|
import cn.newfeifan.mall.module.pay.dal.dataobject.refund.PayRefundDO;
|
|
import cn.newfeifan.mall.module.pay.dal.mysql.refund.PayRefundMapper;
|
|
import cn.newfeifan.mall.module.pay.dal.mysql.refund.PayRefundMapper;
|
|
import cn.newfeifan.mall.module.pay.dal.redis.no.PayNoRedisDAO;
|
|
import cn.newfeifan.mall.module.pay.dal.redis.no.PayNoRedisDAO;
|
|
|
|
+import cn.newfeifan.mall.module.pay.enums.fuyouorder.FuYouPayOrderTypeEnum;
|
|
import cn.newfeifan.mall.module.pay.enums.notify.PayNotifyTypeEnum;
|
|
import cn.newfeifan.mall.module.pay.enums.notify.PayNotifyTypeEnum;
|
|
import cn.newfeifan.mall.module.pay.enums.order.PayOrderStatusEnum;
|
|
import cn.newfeifan.mall.module.pay.enums.order.PayOrderStatusEnum;
|
|
import cn.newfeifan.mall.module.pay.enums.refund.PayRefundStatusEnum;
|
|
import cn.newfeifan.mall.module.pay.enums.refund.PayRefundStatusEnum;
|
|
import cn.newfeifan.mall.module.pay.framework.pay.config.PayProperties;
|
|
import cn.newfeifan.mall.module.pay.framework.pay.config.PayProperties;
|
|
import cn.newfeifan.mall.module.pay.service.app.PayAppService;
|
|
import cn.newfeifan.mall.module.pay.service.app.PayAppService;
|
|
import cn.newfeifan.mall.module.pay.service.channel.PayChannelService;
|
|
import cn.newfeifan.mall.module.pay.service.channel.PayChannelService;
|
|
|
|
+import cn.newfeifan.mall.module.pay.service.fuyouorder.FuYouPayOrderService;
|
|
import cn.newfeifan.mall.module.pay.service.notify.PayNotifyService;
|
|
import cn.newfeifan.mall.module.pay.service.notify.PayNotifyService;
|
|
import cn.newfeifan.mall.module.pay.service.order.PayOrderService;
|
|
import cn.newfeifan.mall.module.pay.service.order.PayOrderService;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -65,6 +67,9 @@ public class PayRefundServiceImpl implements PayRefundService {
|
|
@Resource
|
|
@Resource
|
|
private PayNotifyService notifyService;
|
|
private PayNotifyService notifyService;
|
|
|
|
|
|
|
|
+ @Resource
|
|
|
|
+ private FuYouPayOrderService fuYouPayOrderService;
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public PayRefundDO getRefund(Long id) {
|
|
public PayRefundDO getRefund(Long id) {
|
|
return refundMapper.selectById(id);
|
|
return refundMapper.selectById(id);
|
|
@@ -98,11 +103,20 @@ public class PayRefundServiceImpl implements PayRefundService {
|
|
PayOrderDO order = validatePayOrderCanRefund(reqDTO);
|
|
PayOrderDO order = validatePayOrderCanRefund(reqDTO);
|
|
// 1.3 校验支付渠道是否有效
|
|
// 1.3 校验支付渠道是否有效
|
|
PayChannelDO channel = channelService.validPayChannel(order.getChannelId());
|
|
PayChannelDO channel = channelService.validPayChannel(order.getChannelId());
|
|
- PayClient client = channelService.getPayClient(channel.getId());
|
|
|
|
- if (client == null) {
|
|
|
|
- log.error("[refund][渠道编号({}) 找不到对应的支付客户端]", channel.getId());
|
|
|
|
- throw exception(CHANNEL_NOT_FOUND);
|
|
|
|
|
|
+ PayClient client = null;
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * 这里做一下调整,因为现在对接了两个支付方(富友,微信),所以退款的申请对象也不同
|
|
|
|
+ */
|
|
|
|
+ if (!channel.getCode().equals(FuYouPayOrderTypeEnum.JSAPI.getCode())) {
|
|
|
|
+ client = channelService.getPayClient(channel.getId());
|
|
|
|
+
|
|
|
|
+ if (client == null) {
|
|
|
|
+ log.error("[refund][渠道编号({}) 找不到对应的支付客户端]", channel.getId());
|
|
|
|
+ throw exception(CHANNEL_NOT_FOUND);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+
|
|
// 1.4 校验退款订单是否已经存在
|
|
// 1.4 校验退款订单是否已经存在
|
|
PayRefundDO refund = refundMapper.selectByAppIdAndMerchantRefundId(
|
|
PayRefundDO refund = refundMapper.selectByAppIdAndMerchantRefundId(
|
|
app.getId(), reqDTO.getMerchantRefundId());
|
|
app.getId(), reqDTO.getMerchantRefundId());
|
|
@@ -123,6 +137,28 @@ public class PayRefundServiceImpl implements PayRefundService {
|
|
.setStatus(PayRefundStatusEnum.WAITING.getStatus())
|
|
.setStatus(PayRefundStatusEnum.WAITING.getStatus())
|
|
.setPayPrice(order.getPrice()).setRefundPrice(reqDTO.getPrice());
|
|
.setPayPrice(order.getPrice()).setRefundPrice(reqDTO.getPrice());
|
|
refundMapper.insert(refund);
|
|
refundMapper.insert(refund);
|
|
|
|
+
|
|
|
|
+ //选择不同的渠道退款
|
|
|
|
+ if (channel.getCode().equals(FuYouPayOrderTypeEnum.JSAPI.getCode())) {
|
|
|
|
+ fuYouPayOrderService.payRefund(reqDTO, order, refund, channel, client);
|
|
|
|
+ } else {
|
|
|
|
+ // 这里是原来芋道的,不去改动
|
|
|
|
+ selectChannelRefund(reqDTO, order, refund, channel, client);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 返回退款编号
|
|
|
|
+ return refund.getId();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 原本芋道退款的方法
|
|
|
|
+ * @param reqDTO 退款信息
|
|
|
|
+ * @param order 订单信息
|
|
|
|
+ * @param refund 支付退款信息
|
|
|
|
+ * @param channel 通道
|
|
|
|
+ * @param client 支付客户端
|
|
|
|
+ */
|
|
|
|
+ private void selectChannelRefund(PayRefundCreateReqDTO reqDTO, PayOrderDO order, PayRefundDO refund, PayChannelDO channel, PayClient client) {
|
|
try {
|
|
try {
|
|
// 2.2 向渠道发起退款申请
|
|
// 2.2 向渠道发起退款申请
|
|
PayRefundUnifiedReqDTO unifiedReqDTO = new PayRefundUnifiedReqDTO()
|
|
PayRefundUnifiedReqDTO unifiedReqDTO = new PayRefundUnifiedReqDTO()
|
|
@@ -142,9 +178,6 @@ public class PayRefundServiceImpl implements PayRefundService {
|
|
log.error("[createPayRefund][退款 id({}) requestDTO({}) 发生异常]",
|
|
log.error("[createPayRefund][退款 id({}) requestDTO({}) 发生异常]",
|
|
refund.getId(), reqDTO, e);
|
|
refund.getId(), reqDTO, e);
|
|
}
|
|
}
|
|
-
|
|
|
|
- // 返回退款编号
|
|
|
|
- return refund.getId();
|
|
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -164,7 +197,7 @@ public class PayRefundServiceImpl implements PayRefundService {
|
|
}
|
|
}
|
|
|
|
|
|
// 校验金额,退款金额不能大于原定的金额
|
|
// 校验金额,退款金额不能大于原定的金额
|
|
- if (reqDTO.getPrice() + order.getRefundPrice() > order.getPrice()){
|
|
|
|
|
|
+ if (reqDTO.getPrice() + order.getRefundPrice() > order.getPrice()) {
|
|
throw exception(REFUND_PRICE_EXCEED);
|
|
throw exception(REFUND_PRICE_EXCEED);
|
|
}
|
|
}
|
|
// 是否有退款中的订单
|
|
// 是否有退款中的订单
|
|
@@ -197,9 +230,10 @@ public class PayRefundServiceImpl implements PayRefundService {
|
|
* 通知并更新订单的退款结果
|
|
* 通知并更新订单的退款结果
|
|
*
|
|
*
|
|
* @param channel 支付渠道
|
|
* @param channel 支付渠道
|
|
- * @param notify 通知
|
|
|
|
|
|
+ * @param notify 通知
|
|
*/
|
|
*/
|
|
- @Transactional(rollbackFor = Exception.class) // 注意,如果是方法内调用该方法,需要通过 getSelf().notifyRefund(channel, notify) 调用,否则事务不生效
|
|
|
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
|
+ // 注意,如果是方法内调用该方法,需要通过 getSelf().notifyRefund(channel, notify) 调用,否则事务不生效
|
|
public void notifyRefund(PayChannelDO channel, PayRefundRespDTO notify) {
|
|
public void notifyRefund(PayChannelDO channel, PayRefundRespDTO notify) {
|
|
// 情况一:退款成功
|
|
// 情况一:退款成功
|
|
if (PayRefundStatusRespEnum.isSuccess(notify.getStatus())) {
|
|
if (PayRefundStatusRespEnum.isSuccess(notify.getStatus())) {
|