|
|
@@ -64,7 +64,7 @@ func CollectContributionExchangeData(eg *xorm.Engine, masterId string, ch *rabbi |
|
|
|
var totalValues decimal.Decimal |
|
|
|
for { |
|
|
|
var list []model.UserVirtualAmount |
|
|
|
err = eg.Where("coin_id = ? and amount >= ?", base.CoinId, base.DestroyHoneyValues).Limit(pageSize, (page-1)*pageSize).Asc("id").Find(&list) |
|
|
|
err = eg.Where("coin_id = ? and amount > 0", base.CoinId).Limit(pageSize, (page-1)*pageSize).Asc("id").Find(&list) |
|
|
|
if err != nil { |
|
|
|
fmt.Println("err:::::1111", err) |
|
|
|
return |
|
|
@@ -88,12 +88,13 @@ func CollectContributionExchangeData(eg *xorm.Engine, masterId string, ch *rabbi |
|
|
|
}, md2.HoneyDividendRoutKeyForUserContributionExchange) |
|
|
|
totalValues = totalValues.Add(tmpValue) |
|
|
|
} |
|
|
|
page++ |
|
|
|
time.Sleep(time.Millisecond * time.Duration(rand.Intn(1000))) |
|
|
|
} |
|
|
|
|
|
|
|
//6、修改分红记录数据 |
|
|
|
honeyContributionExchangeRecords.TotalContributionValues = totalValues.String() |
|
|
|
honeyContributionExchangeRecords.TotalExchangeHoneyValues = nowHoneys |
|
|
|
honeyContributionExchangeRecords.TotalContributionValues = nowHoneys |
|
|
|
honeyContributionExchangeRecords.TotalExchangeHoneyValues = totalValues.String() |
|
|
|
honeyContributionExchangeRecords.UserNums = zhios_order_relate_utils.StrToInt(nowUsers) |
|
|
|
honeyContributionExchangeRecords.State = 1 |
|
|
|
|
|
|
|