StoreSkuExt中添加VendorInfoMap,将所有平台相关的信息移入到这里
This commit is contained in:
@@ -407,14 +407,8 @@ func setStoreMapInfo(ctx *jxcontext.Context, db *dao.DaoDB, storesInfo *StoresIn
|
||||
return err
|
||||
}
|
||||
|
||||
storeMapMap := make(map[int][]*model.StoreMap)
|
||||
for _, v := range storeMapList {
|
||||
storeMapMap[v.StoreID] = append(storeMapMap[v.StoreID], v)
|
||||
}
|
||||
storeCourierMap := make(map[int][]*model.StoreCourierMap)
|
||||
for _, v := range storeCourierList {
|
||||
storeCourierMap[v.StoreID] = append(storeCourierMap[v.StoreID], v)
|
||||
}
|
||||
storeMapMap := dao.StoreMapList2Map(storeMapList)
|
||||
storeCourierMap := dao.StoreCourierList2Map(storeCourierList)
|
||||
|
||||
for _, v := range storesInfo.Stores {
|
||||
if briefLevel > 0 {
|
||||
|
||||
Reference in New Issue
Block a user