Skip to content

Commit 404102a

Browse files
authored
🎨 #3493 【微信支付】修复合单支付combineTransactions接口参数错误问题
1 parent 5decfcb commit 404102a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BaseWxPayServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ public CombineTransactionsResult combine(TradeTypeEnum tradeType, CombineTransac
809809
@Override
810810
public <T> T combineTransactions(TradeTypeEnum tradeType, CombineTransactionsRequest request) throws WxPayException {
811811
CombineTransactionsResult result = this.combine(tradeType, request);
812-
return result.getPayInfo(tradeType, request.getCombineAppid(), request.getCombineAppid(), this.getConfig().getPrivateKey());
812+
return result.getPayInfo(tradeType, request.getCombineAppid(), request.getCombineMchid(), this.getConfig().getPrivateKey());
813813
}
814814

815815
@Override

0 commit comments

Comments
 (0)