支付配置

This commit is contained in:
陈俊宏 2024-08-06 10:35:30 +08:00
parent 9f052435cc
commit e8576d67d9
4 changed files with 14 additions and 10 deletions

View File

@ -79,8 +79,7 @@ func ALiH5PayInfo(c context.Context, payOrderRequest PayOrderRequest) (string, e
bm.Set("out_trade_no", payOrderRequest.OrderId).
Set("total_amount", amount).
Set("subject", payOrderRequest.Description).
Set("notify_url", fmt.Sprintf(envConfig.PayService.TestHost+payCommon.ALI_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId))
//Set("notify_url", fmt.Sprintf(envConfig.PayService.ProdHost+payCommon.ALI_NOTIFY_URL_PROD+"%d", payOrderRequest.PayChannelId))
Set("notify_url", fmt.Sprintf(envConfig.PayService.Host+payCommon.ALI_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId))
aliRsp, err := aliClient.TradeWapPay(c, bm)
if err != nil {

View File

@ -1,7 +1,7 @@
package paymentService
import (
"PaymentCenter/app/utils"
"PaymentCenter/bootstrap"
"PaymentCenter/config"
"context"
"crypto/md5"
@ -19,6 +19,7 @@ import (
func TestMarketSendRequest_Market(t *testing.T) {
c := context.Background()
//解析启动命令
opts := config.GetOptions()
if opts.ShowVersion {
fmt.Printf("%s\ncommit %s\nbuilt on %s\n", server.Version, server.BuildCommit, server.BuildDate)
@ -26,11 +27,17 @@ func TestMarketSendRequest_Market(t *testing.T) {
}
//加载配置
_, err := config.Load(opts.ConfFile)
opts.ConfFile = "../../../.env"
conf, err := config.Load(opts.ConfFile)
if err != nil {
utils.Log(nil, "err", err.Error())
return
}
//引导程序
err = bootstrap.Bootstrap(conf)
if err != nil {
return
}
request := PayOrderRequest{
OrderId: 12312312312,
ChannelType: 6,

View File

@ -75,8 +75,7 @@ func WxH5PayInfo(c context.Context, payOrderRequest PayOrderRequest) (string, er
Set("description", payOrderRequest.Description).
Set("out_trade_no", payOrderRequest.OrderId).
Set("time_expire", expire).
Set("notify_url", fmt.Sprintf(envConfig.PayService.TestHost+payCommon.WX_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId)).
//Set("notify_url", fmt.Sprintf(envConfig.PayService.ProdHost+payCommon.WX_NOTIFY_URL_PROD+"%d", payOrderRequest.PayChannelId)).
Set("notify_url", fmt.Sprintf(envConfig.PayService.Host+payCommon.WX_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId)).
SetBodyMap("amount", func(bm gopay.BodyMap) {
bm.Set("total", payOrderRequest.Amount).
Set("currency", "CNY")

View File

@ -93,8 +93,7 @@ type CronConfig struct {
}
type PayService struct {
TestHost string `toml:"TestHost"`
ProdHost string `toml:"ProdHost"`
Host string `toml:"TestHost"`
IsProd bool `toml:"IsProd"`
}