合单关单
合单支付订单只能使用此合单关单api完成关单。调用关单接口:商户订单支付失败需要生成新单号重新发起支付,要对原订单号调用关单,避免重复支付;系统下单后,用户支付超时,系统退出不再受理,避免用户继续,请调用关单接口。 官方合单支付文档
js
wxpay.v2.pay.closecombinedorder.post({
combine_appid,
combine_mch_id,
nonce_str,
sign_type,
combine_out_trade_no,
sub_order_list,
})
.then(
({
data: {
return_code,
return_msg,
combine_appid,
combine_mch_id,
nonce_str,
sign,
result_code,
err_code,
err_code_des,
},
}) => ({
return_code,
return_msg,
combine_appid,
combine_mch_id,
nonce_str,
sign,
result_code,
err_code,
err_code_des,
})
)