This commit is contained in:
2023-08-31 15:16:45 +08:00
parent 8034a73b63
commit f8e2ee3c65
2 changed files with 7 additions and 6 deletions

View File

@@ -756,12 +756,12 @@ public class OrderService {
.build() .build()
); );
// 余额支付 // 余额支付
result.add( // result.add(
PayModeVO.builder() // PayModeVO.builder()
.payModeCode(OrderPayModeEnum.PAYMENT_OF_BALANCE.getValue()) // .payModeCode(OrderPayModeEnum.PAYMENT_OF_BALANCE.getValue())
.payModeName(OrderPayModeEnum.PAYMENT_OF_BALANCE.getLabel()) // .payModeName(OrderPayModeEnum.PAYMENT_OF_BALANCE.getLabel())
.build() // .build()
); // );
} }
return result; return result;
} }

View File

@@ -2986,6 +2986,7 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService {
applyRefundDTO.setRefundType(Constants.ONE); applyRefundDTO.setRefundType(Constants.ONE);
applyRefundDTO.setRefundAmount(refundAmount); applyRefundDTO.setRefundAmount(refundAmount);
applyRefundDTO.setWechatAppId(wechatAppId); applyRefundDTO.setWechatAppId(wechatAppId);
applyRefundDTO.setMemberId(memberId);
refundOrderWithAdapay(applyRefundDTO); refundOrderWithAdapay(applyRefundDTO);
// logger.info("重试订单退款response:{}", JSON.toJSONString(response)); // logger.info("重试订单退款response:{}", JSON.toJSONString(response));
} else { } else {