Merge remote-tracking branch 'origin/dev/dev1.0' into dev/dev1.0

# Conflicts:
#	app/third/paymentService/wechat_service.go
This commit is contained in:
陈俊宏 2024-08-20 11:27:37 +08:00
commit 2c88c0b019
5 changed files with 15 additions and 0 deletions

View File

@ -18,6 +18,7 @@ type PayCommonReqBody struct {
Amount int `json:"amount" validate:"required" label:"支付金额,单位分"`
ExtJson string `json:"ext_json" label:"扩展参数"`
Desc string `json:"desc" validate:"max=100" label:"商品描述"`
ReturnUrl string `json:"return_url" validate:"required,max=1024" label:"支付成功后跳转的地址"`
}
type PayReqs struct {

View File

@ -23,6 +23,7 @@ type PayParam struct {
ExtJson string
Desc string
ClientIp string
ReturnUrl string
}
type Pay struct {
@ -47,6 +48,7 @@ func NewPayWithPayCheck(paycheck *PayCheck) *Pay {
ExtJson: paycheck.Reqs.ExtJson,
Desc: paycheck.Reqs.Desc,
ClientIp: paycheck.AppCheck.Ip,
ReturnUrl: paycheck.Reqs.ReturnUrl,
},
RelationOrder: paycheck.OldOrder,
PayCode: errorcode.Success,
@ -102,6 +104,7 @@ func (w *Pay) PayUrl() (url string) {
Description: w.Order.Desc,
Amount: w.Order.Amount,
PayerClientIp: w.PayParam.ClientIp,
ReturnUrl: w.PayParam.ReturnUrl,
}
if payFunc, ok = PayWayList[w.PayParam.Channel.ChannelType]; !ok {
w.PayCode = errorcode.PayChannelNotBuild

View File

@ -67,6 +67,9 @@ func ALiH5PayInfo(c context.Context, payOrderRequest PayOrderRequest) (string, e
Set("total_amount", amount).
Set("subject", payOrderRequest.Description).
Set("notify_url", fmt.Sprintf(envConfig.PayService.Host+payCommon.ALI_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId))
if payOrderRequest.ReturnUrl != "" {
bm.Set("return_url", payOrderRequest.ReturnUrl)
}
aliRsp, err := aliClient.TradeWapPay(c, bm)
if err != nil {

View File

@ -19,6 +19,7 @@ type PayOrderRequest struct {
Description string `json:"description"` // 商品描述
Amount int `json:"amount"` // 金额单位为分
PayerClientIp string `json:"payer_client_ip"` // 终端IP
ReturnUrl string `json:"return_url"` // 支付成功后回调地址
Wx WxPay `json:"wx"`
Ali AliPay `json:"ali"`
}

View File

@ -13,6 +13,7 @@ import (
"github.com/go-pay/gopay"
"github.com/go-pay/gopay/wechat/v3"
"github.com/qit-team/snow-core/log/logger"
"net/url"
"strconv"
"time"
)
@ -85,6 +86,12 @@ func WxH5PayInfo(c context.Context, payOrderRequest PayOrderRequest) (string, er
logger.Error(c, "WxH5PayInfo 发生错误", fmt.Sprintf("错误状态码:%d, 错误信息:%s", wxRsp.Code, wxRsp.Error))
return "", errors.New(fmt.Sprintf("发起支付失败,失败状态码:%d, 失败原因:%s", wxRsp.Code, wxRsp.Error))
}
if payOrderRequest.ReturnUrl != "" {
values := url.Values{}
values.Set("redirect_url", payOrderRequest.ReturnUrl)
encodedStr := values.Encode()
wxRsp.Response.H5Url = wxRsp.Response.H5Url + "&" + encodedStr
}
return wxRsp.Response.H5Url, nil
}