|
@@ -10,6 +10,7 @@ import (
|
|
|
"pay/log"
|
|
|
"pay/pay"
|
|
|
"pay/utils"
|
|
|
+ "strconv"
|
|
|
"time"
|
|
|
|
|
|
"github.com/go-pay/gopay"
|
|
@@ -28,9 +29,13 @@ func (a *SingleWechatPay) Pay(ctx context.Context, orderMsg *cpay.OrderMsg) (int
|
|
|
fmt.Println("====================single-wechat二维码获取=====================")
|
|
|
|
|
|
// 初始化 BodyMap
|
|
|
- orderId := orderMsg.Project + "_" + orderMsg.Id.Hex()
|
|
|
+ orderId := orderMsg.Id.Hex()
|
|
|
bm := make(gopay.BodyMap)
|
|
|
singlePayCnf := utils.GetSinglePayConfig(conf.AppConfig)
|
|
|
+ amount, err := strconv.ParseFloat(fmt.Sprintf("%.2f", *orderMsg.Amount), 64)
|
|
|
+ if err != nil {
|
|
|
+ return nil, errors.New("价格parse错误!")
|
|
|
+ }
|
|
|
|
|
|
bm.Set("appid", singlePayCnf.WechatPay.AppId).
|
|
|
Set("mchid", singlePayCnf.WechatPay.MchId).
|
|
@@ -39,7 +44,7 @@ func (a *SingleWechatPay) Pay(ctx context.Context, orderMsg *cpay.OrderMsg) (int
|
|
|
Set("time_expire", time.Now().Add(10*time.Minute).Format(time.RFC3339)).
|
|
|
Set("notify_url", singlePayCnf.WechatPay.NotifyUrl).
|
|
|
SetBodyMap("amount", func(bm gopay.BodyMap) {
|
|
|
- bm.Set("total", orderMsg.Amount).
|
|
|
+ bm.Set("total", amount*100).
|
|
|
Set("currency", "CNY")
|
|
|
})
|
|
|
|