Procházet zdrojové kódy

add reverse:for v1.1.3 分佣方案优化

tags/v1.1.3
huangjiajun před 2 roky
rodič
revize
a981a2d941
1 změnil soubory, kde provedl 9 přidání a 1 odebrání
  1. +9
    -1
      lib/comm_plan/all.go

+ 9
- 1
lib/comm_plan/all.go Zobrazit soubor

@@ -247,7 +247,15 @@ func sameMoneyV2(lv, isOnlySubsidy int, totalAmtList, restAmtList, profitList, p
newTotalRatioList := make([]*VirtualCoinCommission, 0)
newPeerRateList := make([]*VirtualCoinCommission, 0)
newSubsidyFeeList := subsidyFeeList

if opt == nil {
return newProfitList, newRestAmtList, newTotalRatioList, newPeerRateList, newSubsidyFeeList, zeroList
}
if opt.UserRate == nil {
return newProfitList, newRestAmtList, newTotalRatioList, newPeerRateList, newSubsidyFeeList, zeroList
}
if opt.UserRate[lv] == nil {
return newProfitList, newRestAmtList, newTotalRatioList, newPeerRateList, newSubsidyFeeList, zeroList
}
//极差返利
if opt.UserRate[lv].PayMode == 0 && isOnlySubsidy == 0 {
for _, coin := range profitList {


Načítá se…
Zrušit
Uložit