diff --git a/business/jxstore/financial/financial.go b/business/jxstore/financial/financial.go index 354416d8b..f8f9933e4 100644 --- a/business/jxstore/financial/financial.go +++ b/business/jxstore/financial/financial.go @@ -138,7 +138,7 @@ func (p *PayHandler) CreateRefund() (err error) { if p.Order.PayPrice < 100 { param.Amount = p.Order.PayPrice } else { - param.Amount = p.Order.PayPrice * place.DividePercentage / 100 //手续费10% + param.Amount = p.Order.PayPrice * place.DividePercentage / 100 //手续费 } if authInfo, err := p.Ctx.GetV2AuthInfo(); err == nil && authInfo.GetAuthType() == weixin.AuthTypeWxApp { param.OpenID = authInfo.GetAuthID()