huangjiajun 1 рік тому
джерело
коміт
cd20335dab
1 змінених файлів з 2 додано та 2 видалено
  1. +2
    -2
      svc/reward_commission.go

+ 2
- 2
svc/reward_commission.go Переглянути файл

@@ -479,10 +479,10 @@ func CommFee(fee float64, opt *comm_plan.PlanOpt, types, isGoods string) (float6

if isGoods == "1" {
orderBeforeRate := fee * opt.OrderBeforeRate
fee1 := int64(fee*1e4) - int64(orderBeforeRate*1e4)
if opt.PointType == 1 { //四舍五入
fee = zhios_order_relate_utils.FloatFormat(orderBeforeRate, 2)
fee = zhios_order_relate_utils.FloatFormat(float64(fee1)/1e4, 2)
} else {
fee1 := int64(fee*1e4) - int64(orderBeforeRate*1e4)
fee = float64(int64(float64(fee1)/100)) / 100
}
}


Завантаження…
Відмінити
Зберегти