|
|
@@ -3309,6 +3309,10 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
* 回调后 直接退款
|
|
|
*/
|
|
|
public void notifyRefundOrder(OrderDon orderDon, GoodsDon goodsDon, GoodsDonSku sku) throws Exception {
|
|
|
+ //续费订单过滤
|
|
|
+ if (orderDon.getOrderType() == 2) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
//退款
|
|
|
OrderRefundReq orderRefundReq = new OrderRefundReq();
|
|
|
orderRefundReq.setOrderId(orderDon.getId());
|