【功能修复】支付:发起微信退款调用失败时,设置的 outNo 不正确的问题

This commit is contained in:
YunaiV 2024-09-12 19:39:29 +08:00
parent 01660355cc
commit 57a562b8e3
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ public abstract class AbstractWxPayClient extends AbstractPayClient<WxPayClientC
String errorCode = getErrorCode(e);
String errorMessage = getErrorMessage(e);
return PayRefundRespDTO.failureOf(errorCode, errorMessage,
reqDTO.getOutTradeNo(), e.getXmlString());
reqDTO.getOutRefundNo(), e.getXmlString());
}
}