Commit d4e6df41 by 杨树贤

价格体系

parent 0651fec3
Showing with 7 additions and 6 deletions
...@@ -170,8 +170,11 @@ func (ls *LyService) LyGoodsDetail(ctx *gin.Context, goodsIds []string, ch chan ...@@ -170,8 +170,11 @@ func (ls *LyService) LyGoodsDetail(ctx *gin.Context, goodsIds []string, ch chan
//1是猎芯,3是爱智 //1是猎芯,3是爱智
switch sku.OrgId { switch sku.OrgId {
case 1: case 1:
//获取系数和价格 //如果是寄售的,也不走价格体系
sku = ls.GetCoefficientAndPrice(sku) if sku.Source != 12 {
//获取系数和价格
sku = ls.GetCoefficientAndPrice(sku)
}
break break
case 3: case 3:
priceService := PriceService{} priceService := PriceService{}
...@@ -300,15 +303,13 @@ func (ls *LyService) GetSpuExtra(spuId string) (spuExtra model.SpuExtra) { ...@@ -300,15 +303,13 @@ func (ls *LyService) GetSpuExtra(spuId string) (spuExtra model.SpuExtra) {
var oldSpuExtra OldSpuExtra var oldSpuExtra OldSpuExtra
err = mongodb.DB("ichunt").C("spu_extra").Find(bson.M{"spu_id": spuId}).One(&oldSpuExtra) err = mongodb.DB("ichunt").C("spu_extra").Find(bson.M{"spu_id": spuId}).One(&oldSpuExtra)
for _, image := range oldSpuExtra.OldImageList { for _, image := range oldSpuExtra.OldImageList {
spuExtra.ImageList = append(spuExtra.ImageList,struct { spuExtra.ImageList = append(spuExtra.ImageList, struct {
Name string `bson:"name" json:"name"` Name string `bson:"name" json:"name"`
Thumbnail string `bson:"thumbnail" json:"thumbnail"` Thumbnail string `bson:"thumbnail" json:"thumbnail"`
}{ }{
Name: image.Name, Name: image.Name,
Thumbnail: image.Thumbnail, Thumbnail: image.Thumbnail,
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment