修复getStoresSql中错用storeIDs的bug
This commit is contained in:
@@ -252,7 +252,7 @@ func getStoresSql(ctx *jxcontext.Context, keyword string, params map[string]inte
|
||||
if params["storeID"] != nil || params["storeIDs"] != nil {
|
||||
var storeIDs []int
|
||||
if params["storeIDs"] != nil {
|
||||
if err = jxutils.Strings2Objs(utils.Interface2String("storeIDs"), &storeIDs); err != nil {
|
||||
if err = jxutils.Strings2Objs(utils.Interface2String(params["storeIDs"]), &storeIDs); err != nil {
|
||||
return "", nil, "", nil, err
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user