wx pay
This commit is contained in:
parent
48425a25ce
commit
405b2d3361
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue