huangjiajun преди 1 година
родител
ревизия
dfa0b4b949
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. +2
    -2
      svc/reward_commission.go

+ 2
- 2
svc/reward_commission.go Целия файл

@@ -509,7 +509,7 @@ func CommFee(fee float64, opt *comm_plan.PlanOpt, types, isGoods string) (float6
// 剩余可分配的佣金
total := int64(fee*1e4) - int64(pvdFee*1e4) - int64(sysFee*1e4) - int64(regionFee*1e4) - int64(regionSubFee*1e4) - int64(globalFee*1e4) - int64(selfBuyGlobalFee*1e4) - int64(pushHandFee*1e4) - int64(merchantFee*1e4) - int64(newAgentFee*1e4)
for _, v := range opt.RateList {
total -= int64(fee * v * 1e4)
total -= int64(fee * (v / 100) * 1e4)
}
fee = float64(total) / 1e4
if fee < 0 {
@@ -528,7 +528,7 @@ func CommFee(fee float64, opt *comm_plan.PlanOpt, types, isGoods string) (float6
// 剩余可分配的佣金
totalFirst := int64(feeFirst*1e4) - int64(pvdFeeFirst*1e4) - int64(sysFeeFirst*1e4) - int64(regionFeeFirst*1e4) - int64(regionSubFeeFirst*1e4) - int64(globalFeeFirst*1e4) - int64(selfBuyGlobalFeeFirst*1e4) - int64(pushHandFeeFirst*1e4) - int64(merchantFeeFirst*1e4) - int64(newAgentFeeFirst*1e4)
for _, v := range opt.RateList {
totalFirst -= int64(feeFirst * v * 1e4)
totalFirst -= int64(feeFirst * (v / 100) * 1e4)
}
feeFirst = float64(totalFirst) / 1e4
if feeFirst < 0 {


Зареждане…
Отказ
Запис