!912 解决退款失败时返回退款订单号错误的问题

Merge pull request !912 from 杨宇庆/N/A
This commit is contained in:
芋道源码 2024-03-30 09:45:37 +00:00 committed by Gitee
commit a09b46217b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -270,7 +270,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());
}
}