移除测试代码

This commit is contained in:
meixiongfeng 2023-10-08 16:22:11 +08:00
parent 1bdb587514
commit d2ebddf88c

View File

@ -149,9 +149,9 @@ func (this *Caravan) InitCaravanItemData(uid string, data *pb.DBCaravan) {
goodinfo := &pb.GoodsInfo{
Goods: make(map[string]int32, 0),
}
var price int32
for _, c := range items {
for _, c := range items {
var price int32
if _, ok := data.Period[c.Itemid]; !ok {
data.Period[c.Itemid] = &pb.GoodPeriod{}
}
@ -189,9 +189,7 @@ func (this *Caravan) InitCaravanItemData(uid string, data *pb.DBCaravan) {
}
}
if len(c.FluctuationRange) == 2 {
if c.Itemid == "21000018" {
c.Itemid = "21000018"
}
p := comm.GetRandNum(c.PriceChangeWeightThree[0], c.PriceChangeWeightThree[1])
if bUp { // 价格上涨
price = int32(math.Floor(float64(price) * (1.0 + float64(p)/1000.0)))