Просмотр исходного кода

add reverse:for v1.8.7 test

tags/v1.8.7
huangjiajun 2 лет назад
Родитель
Сommit
9b11acfb89
2 измененных файлов: 8 добавлений и 7 удалений
  1. +7
    -6
      db/model/user_lv_buy_list.go
  2. +1
    -1
      svc/extend_price_reward.go

+ 7
- 6
db/model/user_lv_buy_list.go Просмотреть файл

@@ -5,10 +5,11 @@ import (
)

type UserLvBuyList struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Lv int `json:"lv" xorm:"default 0 comment('等级id') INT(11)"`
Source string `json:"source" xorm:"comment('来源') VARCHAR(255)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
Time time.Time `json:"time" xorm:"comment('创建时间') DATETIME"`
Oid string `json:"oid" xorm:"comment('订单号') VARCHAR(255)"`
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Lv int `json:"lv" xorm:"default 0 comment('等级id') INT(11)"`
Source string `json:"source" xorm:"comment('来源') VARCHAR(255)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
Time time.Time `json:"time" xorm:"comment('创建时间') DATETIME"`
Oid string `json:"oid" xorm:"comment('订单号') VARCHAR(255)"`
ParentUid int `json:"parent_uid" xorm:"default 0 INT(11)"`
}

+ 1
- 1
svc/extend_price_reward.go Просмотреть файл

@@ -55,7 +55,7 @@ func ExtendPriceReward(eg *xorm.Engine, param map[string]string, cfg *comm_plan.
}
}
//查出当前的数量
count, _ := eg.Where("source=? and lv=?", param["source"], param["level"]).Count(&model.UserLvBuyList{})
count, _ := eg.Where("source=? and lv=? and parent_uid=?", param["source"], param["level"], userProfile.ParentUid).Count(&model.UserLvBuyList{})
count++
var isTrue = false
//如果等级一致 或是代理费分佣 判断位置


Загрузка…
Отмена
Сохранить