This commit is contained in:
clunt 2022-05-12 14:32:42 +08:00
parent 48425a25ce
commit 405b2d3361
2 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class WxPayController extends BaseController {
try {
// TODO 订单里需要补充支付金额tittle简要描述分账信息description
map = adapayService.wxPubPay(payCallback, expend, orderMaster.getCode(), "0.01",
"orderMaster.getTittle()", "orderMaster.get简要描述", "0", "orderMaster.getDescription");
"orderMaster.getTittle()", "orderMaster.get简要描述", null, "orderMaster.getDescription");
} catch (BaseAdaPayException e) {
logger.error("获取微信用户信息失败", e);
return AjaxResult.error();

View File

@ -196,6 +196,7 @@ public class AdapayService {
paymentParams.put("pay_amt", payAmt);
paymentParams.put("goods_title", goodsTittle);
paymentParams.put("goods_desc", goodsDesc);
paymentParams.put("pay_mode", "delay");
paymentParams.put("div_members", divMembers);
paymentParams.put("description", description);
paymentParams.put("expend", expend);