<feat>修改细节
This commit is contained in:
parent
f24a725cef
commit
c15044b862
|
@ -147,6 +147,7 @@ var MsgZH = map[int]string{
|
||||||
RefundOrderNotFound: "退款订单未找到",
|
RefundOrderNotFound: "退款订单未找到",
|
||||||
OrderStatusRefundNotSupport: "订单状态不支持退款",
|
OrderStatusRefundNotSupport: "订单状态不支持退款",
|
||||||
PrePayFail: "预支付失败",
|
PrePayFail: "预支付失败",
|
||||||
|
PreRefundFail: "创建退款单失败",
|
||||||
}
|
}
|
||||||
var MsgMap map[string]map[int]string = map[string]map[int]string{"en": MsgZH}
|
var MsgMap map[string]map[int]string = map[string]map[int]string{"en": MsgZH}
|
||||||
|
|
||||||
|
@ -154,6 +155,7 @@ func GetMsg(code int, local string) string {
|
||||||
if local == "" {
|
if local == "" {
|
||||||
local = "en"
|
local = "en"
|
||||||
}
|
}
|
||||||
|
|
||||||
if msg, ok := MsgMap[local][code]; ok {
|
if msg, ok := MsgMap[local][code]; ok {
|
||||||
return msg
|
return msg
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,7 @@ func Refund(c *gin.Context) {
|
||||||
refund := thirdpay.ThirdPayRefund(c.Request.Context(), req, appCheckInfo, c.ClientIP())
|
refund := thirdpay.ThirdPayRefund(c.Request.Context(), req, appCheckInfo, c.ClientIP())
|
||||||
if refund.PayCode != errorcode.Success {
|
if refund.PayCode != errorcode.Success {
|
||||||
controllers.ApiRes(c, nil, refund.PayCode)
|
controllers.ApiRes(c, nil, refund.PayCode)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
data := thirdpay.NewOrdersResp(refund.Order)
|
data := thirdpay.NewOrdersResp(refund.Order)
|
||||||
var res front.ApiResponse
|
var res front.ApiResponse
|
||||||
|
|
Loading…
Reference in New Issue