|
|
@@ -388,7 +388,8 @@ func StoreLike(c *gin.Context) { |
|
|
|
return |
|
|
|
} |
|
|
|
arg["store_type"] = "0" |
|
|
|
storeId := c.GetHeader("store_id") |
|
|
|
storeId := GetStoreId(c) |
|
|
|
|
|
|
|
if utils.StrToInt(storeId) > 0 { |
|
|
|
arg["store_id"] = storeId |
|
|
|
storeData := db.GetStoreIdEg(MasterDb(c), storeId) |
|
|
@@ -438,6 +439,19 @@ func StoreLike(c *gin.Context) { |
|
|
|
e.OutSuc(c, storeList, nil) |
|
|
|
return |
|
|
|
} |
|
|
|
func GetStoreId(c *gin.Context) string { |
|
|
|
storeId := c.GetHeader("store_id") |
|
|
|
if utils.StrToInt(storeId) == 0 { |
|
|
|
storeId = c.GetHeader("storeId") |
|
|
|
} |
|
|
|
if utils.StrToInt(storeId) == 0 { |
|
|
|
storeId = c.GetHeader("storeid") |
|
|
|
} |
|
|
|
if utils.StrToInt(storeId) == 0 { |
|
|
|
storeId = c.GetHeader("StoreId") |
|
|
|
} |
|
|
|
return storeId |
|
|
|
} |
|
|
|
func Store(c *gin.Context) { |
|
|
|
var arg map[string]string |
|
|
|
if err := c.ShouldBindJSON(&arg); err != nil { |
|
|
@@ -445,7 +459,7 @@ func Store(c *gin.Context) { |
|
|
|
return |
|
|
|
} |
|
|
|
arg["store_type"] = "0" |
|
|
|
storeId := c.GetHeader("store_id") |
|
|
|
storeId := GetStoreId(c) |
|
|
|
if utils.StrToInt(storeId) > 0 { |
|
|
|
arg["store_id"] = storeId |
|
|
|
storeData := db.GetStoreIdEg(MasterDb(c), storeId) |
|
|
|