|
@@ -10,6 +10,7 @@ import (
|
|
|
"pay/log"
|
|
|
"pay/pay"
|
|
|
"pay/utils"
|
|
|
+ "strconv"
|
|
|
|
|
|
"github.com/go-pay/gopay"
|
|
|
"github.com/go-pay/gopay/alipay"
|
|
@@ -29,7 +30,10 @@ func (a *MutliAliPay) Pay(ctx context.Context, orderMsg *cpay.OrderMsg) (interfa
|
|
|
// 初始化 BodyMap
|
|
|
orderId := orderMsg.Project + "_" + orderMsg.Id.Hex()
|
|
|
bm := make(gopay.BodyMap)
|
|
|
- parseAmount, err := utils.IntToDecimal(int32(*orderMsg.Amount))
|
|
|
+ amount, err := strconv.ParseFloat(fmt.Sprintf("%.2f", *orderMsg.Amount), 64)
|
|
|
+ if err != nil {
|
|
|
+ return nil, errors.New("价格parse错误!")
|
|
|
+ }
|
|
|
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
@@ -63,7 +67,7 @@ func (a *MutliAliPay) Pay(ctx context.Context, orderMsg *cpay.OrderMsg) (interfa
|
|
|
Set("scene", "bar_code").
|
|
|
//Set("auth_code", util.RandomNumber(10))
|
|
|
Set("out_trade_no", orderId).
|
|
|
- Set("total_amount", parseAmount).
|
|
|
+ Set("total_amount", amount).
|
|
|
// 口碑门店,如果是第三方授权这里填写app_auth_token对应账号
|
|
|
// Set("seller_id", "2088441503441284"). // sku3d
|
|
|
Set("seller_id", seller.AlipaySellerId). // um
|