支付配置

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). bm.Set("out_trade_no", payOrderRequest.OrderId).
Set("total_amount", amount). Set("total_amount", amount).
Set("subject", payOrderRequest.Description). 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.Host+payCommon.ALI_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId))
//Set("notify_url", fmt.Sprintf(envConfig.PayService.ProdHost+payCommon.ALI_NOTIFY_URL_PROD+"%d", payOrderRequest.PayChannelId))
aliRsp, err := aliClient.TradeWapPay(c, bm) aliRsp, err := aliClient.TradeWapPay(c, bm)
if err != nil { if err != nil {

View File

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

View File

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

View File

@ -93,9 +93,8 @@ type CronConfig struct {
} }
type PayService struct { type PayService struct {
TestHost string `toml:"TestHost"` Host string `toml:"TestHost"`
ProdHost string `toml:"ProdHost"` IsProd bool `toml:"IsProd"`
IsProd bool `toml:"IsProd"`
} }
func newConfig() *Config { func newConfig() *Config {