去掉第三方消息返回给接口
This commit is contained in:
parent
7a45794fbc
commit
b3b782dfe6
|
@ -46,7 +46,7 @@ func Refund(c *gin.Context) {
|
||||||
appCheckInfo := controllers.GetAppCheckInfo(c).(*services.AppCheck)
|
appCheckInfo := controllers.GetAppCheckInfo(c).(*services.AppCheck)
|
||||||
refund, errCode := thirdpay.ThirdPayRefund(c.Request.Context(), req, appCheckInfo, c.ClientIP())
|
refund, errCode := thirdpay.ThirdPayRefund(c.Request.Context(), req, appCheckInfo, c.ClientIP())
|
||||||
if errCode != errorcode.Success {
|
if errCode != errorcode.Success {
|
||||||
controllers.ApiRes(c, nil, errCode, refund.ThirdMsg)
|
controllers.ApiRes(c, nil, errCode)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
data := thirdpay.NewOrdersResp(refund.Order)
|
data := thirdpay.NewOrdersResp(refund.Order)
|
||||||
|
|
Loading…
Reference in New Issue