|
|
@@ -79,7 +79,7 @@ public class WxMiniAppPayV3AdapterService extends BaseWxPayV3AdapterService impl |
|
|
|
} |
|
|
|
req.setOut_trade_no(record.getPayOrderNo()); |
|
|
|
req.setAttach(getAttach(record)); |
|
|
|
req.setNotify_url(payAccount.getPayNotifyV3Url()); |
|
|
|
req.setNotify_url(payAccount.getPayNotifyV3Url(appInfo.getProjectType())); |
|
|
|
|
|
|
|
V3PaySettleReq settle = new V3PaySettleReq(); |
|
|
|
settle.setProfit_sharing(true); |
|
|
@@ -107,7 +107,7 @@ public class WxMiniAppPayV3AdapterService extends BaseWxPayV3AdapterService impl |
|
|
|
req.setDescription("weixin miniApp product"); |
|
|
|
} |
|
|
|
req.setOut_trade_no(productOrder.getOrderNumber()); |
|
|
|
req.setNotify_url(payAccount.getPayNotifyV3Url()); |
|
|
|
req.setNotify_url(payAccount.getPayNotifyV3Url(appInfo.getProjectType())); |
|
|
|
|
|
|
|
V3PayAmountReq amout = new V3PayAmountReq(); |
|
|
|
amout.setTotal(productOrder.getOrderPrice()); |
|
|
@@ -186,7 +186,7 @@ public class WxMiniAppPayV3AdapterService extends BaseWxPayV3AdapterService impl |
|
|
|
payer.setSub_openid(openId); |
|
|
|
req.setCombine_payer_info(payer); |
|
|
|
|
|
|
|
req.setNotify_url(payAccount.getPayNotifyV3Url()); |
|
|
|
req.setNotify_url(payAccount.getPayNotifyV3Url(appInfo.getProjectType())); |
|
|
|
return req; |
|
|
|
} |
|
|
|
|
|
|
|