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
//1是猎芯,3是爱智
switch sku.OrgId {
case 1:
//获取系数和价格
sku = ls.GetCoefficientAndPrice(sku)
//如果是寄售的,也不走价格体系
if sku.Source != 12 {
//获取系数和价格
sku = ls.GetCoefficientAndPrice(sku)
}
break
case 3:
priceService := PriceService{}
......@@ -300,15 +303,13 @@ func (ls *LyService) GetSpuExtra(spuId string) (spuExtra model.SpuExtra) {
var oldSpuExtra OldSpuExtra
err = mongodb.DB("ichunt").C("spu_extra").Find(bson.M{"spu_id": spuId}).One(&oldSpuExtra)
for _, image := range oldSpuExtra.OldImageList {
spuExtra.ImageList = append(spuExtra.ImageList,struct {
spuExtra.ImageList = append(spuExtra.ImageList, struct {
Name string `bson:"name" json:"name"`
Thumbnail string `bson:"thumbnail" json:"thumbnail"`
}{
Name: image.Name,
Name: image.Name,
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