This commit is contained in:
邹宗楠
2023-08-21 18:26:02 +08:00
parent 50b59ae4b0
commit 089748e8d0

View File

@@ -497,7 +497,12 @@ func GetStoreList4User(ctx *jxcontext.Context, mobileNum, userID string) (storeL
storeIDs = append(storeIDs, v.StoreID)
}
}
globals.SugarLogger.Debugf("====roleList := %s", utils.Format4Output(roleList, false))
globals.SugarLogger.Debugf("====storeIDs := %s", utils.Format4Output(storeIDs, false))
globals.SugarLogger.Debugf("====shortRoleNameList := %s", utils.Format4Output(shortRoleNameList, false))
storeList, err = dao.GetStoreListByMobileOrStoreIDs(dao.GetDB(), mobileNum, shortRoleNameList, storeIDs)
globals.SugarLogger.Debugf("====storeList := %s", utils.Format4Output(shortRoleNameList, false))
return storeList, err
}