-
Notifications
You must be signed in to change notification settings - Fork 5
/
fastpay_refund_query.go
55 lines (48 loc) · 2.37 KB
/
fastpay_refund_query.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Package alipay https://docs.open.alipay.com/api_1/alipay.trade.fastpay.refund.query/
package alipay
import (
"encoding/json"
)
// FastpayRefundQueryParam ...
type FastpayRefundQueryParam struct {
TradeNo string `json:"trade_no,omitempty"` // 支付宝交易号
OutTradeNo string `json:"out_trade_no,omitempty"` // 户订单号
OutRequestNo string `json:"out_request_no,omitempty"` // 请求退款接口时,传入的退款请求号,如果在退款请求时未传入,则该值为创建交易时的外部交易号
}
// FastpayRefundQueryResponse ...
type FastpayRefundQueryResponse struct {
ResponseError
TradeNo string `json:"trade_no"` // 支付宝交易号
OutTradeNo string `json:"out_trade_no"` // 商户订单号
OutRequestNo string `json:"out_request_no"` // 本笔退款对应的退款请求号
RefundReason string `json:"refund_reason"` // 发起退款时,传入的退款原因
TotalAmount string `json:"total_amount"` // 该笔退款所对应的交易的订单金额
RefundAmount string `json:"refund_amount"` // 本次退款请求,对应的退款金额
}
// IsRefundSuccess 商户可使用该接口查询自已通过alipay.trade.refund提交的退款请求是否执行成功。 该接口的返回码10000,仅代表本次查询操作成功,不代表退款成功。如果该接口返回了查询数据,则代表退款成功,如果没有查询到则代表未退款成功,可以调用退款接口进行重试。重试时请务必保证退款请求号一致。
func (resp *FastpayRefundQueryResponse) IsRefundSuccess() bool {
return resp.Success() && Float64ifyPrice(resp.RefundAmount) > 0
}
// IsNeedRetry ...
func (resp *FastpayRefundQueryResponse) IsNeedRetry() bool {
return resp.Success() && Float64ifyPrice(resp.RefundAmount) == 0
}
// IsTradeNotExist ...
func (resp *FastpayRefundQueryResponse) IsTradeNotExist() bool {
return resp.SubCode == "ACQ.TRADE_NOT_EXIST"
}
// FastpayRefundQuery ...
func (alipay *Alipay) FastpayRefundQuery(param *FastpayRefundQueryParam) (int, *FastpayRefundQueryResponse, error) {
statusCode, body, err := alipay.OnRequest(
param,
MethodAlipayTradeFastpayRefundQuery,
)
if err != nil {
return 0, nil, err
}
refundQueryResponse := new(FastpayRefundQueryResponse)
if err := json.Unmarshal(body, refundQueryResponse); err != nil {
return 0, nil, err
}
return statusCode, refundQueryResponse, nil
}