代码拉取完成,页面将自动刷新
同步操作将从 springrain/gowe 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package gowe
import (
"encoding/xml"
"github.com/beevik/etree"
)
//WxPayRefund 申请退款 https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_4
func WxPayRefund(wxPayConfig IWxPayConfig, body *WxPayRefundBody) (*WxPayRefundResponse, error) {
// 业务逻辑
bytes, err := wxPayDoWeChatWithCert(wxPayConfig, "/secapi/pay/refund", body, 0)
if err != nil {
return nil, err
}
// 结果校验
if err = wxPayDoVerifySign(wxPayConfig, bytes, true); err != nil {
return nil, err
}
// 解析返回值
res := &WxPayRefundResponse{}
err = wxPayRefundParseResponse(bytes, res)
return res, err
}
//WxPayRefundBody 申请退款的参数
type WxPayRefundBody struct {
TransactionId string `json:"transaction_id"` // 微信支付订单号
OutTradeNo string `json:"out_trade_no"` // 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母_-|*@ ,且在同一个商户号下唯一.
OutRefundNo string `json:"out_refund_no"` // 商户系统内部的退款单号,商户系统内部唯一,只能是数字、大小写字母_-|*@ ,同一退款单号多次请求只退一笔.
TotalFee int `json:"total_fee"` // 订单总金额,单位为分,只能为整数,详见支付金额
RefundFee int `json:"refund_fee"` // 退款总金额,单位为分,只能为整数,可部分退款.详见支付金额
RefundFeeType string `json:"refund_fee_type,omitempty"` // 退款货币类型,需与支付一致,或者不填.符合ISO 4217标准的三位字母代码,默认人民币:CNY
RefundDesc string `json:"refund_desc,omitempty"` // 现退款原因
RefundAccount string `json:"refund_account,omitempty"` // 退款资金来源(见constatnt定义)
NotifyUrl string `json:"notify_url,omitempty"` // 异步接收微信支付退款结果通知的回调地址
}
//WxResponseModel 申请退款的返回值
type WxPayRefundResponse struct {
WxResponseModel
WxPayPartnerResponseModel
TransactionId string `xml:"transaction_id"`
OutTradeNo string `xml:"out_trade_no"`
OutRefundNo string `xml:"out_refund_no"`
RefundId string `xml:"refund_id"`
RefundFee int `xml:"refund_fee"`
SettlementRefundFee int `xml:"settlement_refund_fee"`
TotalFee int `xml:"total_fee"`
SettlementTotalFee int `xml:"settlement_total_fee"`
FeeType string `xml:"fee_type"`
CashFee int `xml:"cash_fee"`
CashRefundFee int `xml:"cash_refund_fee"`
CouponRefundFee int `xml:"coupon_refund_fee"`
CouponRefundCount int `xml:"coupon_refund_count"`
// 使用coupon_refund_count的序号生成的优惠券项
RefundCoupons []WxPayCouponResponseModel `xml:"-"`
}
//wxPayRefundParseResponse 申请退款-解析XML返回值
func wxPayRefundParseResponse(xmlStr []byte, rsp *WxPayRefundResponse) (err error) {
// 常规解析
if err = xml.Unmarshal(xmlStr, rsp); err != nil {
return
}
// 解析CouponRefundCount的对应项
if rsp.CouponRefundCount > 0 {
doc := etree.NewDocument()
if err = doc.ReadFromBytes(xmlStr); err != nil {
return
}
root := doc.SelectElement("xml")
for i := 0; i < rsp.CouponRefundCount; i++ {
m := wxPayNewCouponResponseModel(root, "coupon_refund_id_%d", "coupon_type_%d", "coupon_refund_fee_%d", i)
rsp.RefundCoupons = append(rsp.RefundCoupons, m)
}
}
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。