From b0b487fee101a3b6e313667dbdf816147a976a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AD=94=E5=A4=8D=E5=93=88?= Date: Thu, 12 Sep 2024 19:57:01 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20#3369=E3=80=90=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E3=80=91=E4=BF=AE=E5=A4=8D=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=88=86=E8=B4=A6=E7=BB=93=E6=9E=9Ctransaction=5Fid=E5=8F=96?= =?UTF-8?q?=E5=80=BC=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java index 7f46a3f30..6be5ffc8c 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/ProfitSharingServiceImpl.java @@ -146,7 +146,7 @@ public class ProfitSharingServiceImpl implements ProfitSharingService { @Override public ProfitSharingV3Result profitSharingQueryV3(ProfitSharingQueryV3Request request) throws WxPayException { String url = String.format("%s/v3/profitsharing/orders/%s?transaction_id=%s", this.payService.getPayBaseUrl(), - request.getOutOrderNo(), request.getOutOrderNo()); + request.getOutOrderNo(), request.getTransactionId()); if(StringUtils.isNotEmpty(request.getSubMchId())){ url += "&sub_mchid=" + request.getSubMchId(); }