|
@@ -36,9 +36,9 @@ public class TbUserGropMenuAthrService {
|
|
// 메뉴 중에 최상위 메뉴 선택
|
|
// 메뉴 중에 최상위 메뉴 선택
|
|
HashMap<String, String> systMenuMap = new HashMap<>();
|
|
HashMap<String, String> systMenuMap = new HashMap<>();
|
|
for (TbOperSystMenu systMenu : systMenus) {
|
|
for (TbOperSystMenu systMenu : systMenus) {
|
|
- if (!"ITSOP".equals(systMenu.getOperSystId())) {
|
|
|
|
- continue;
|
|
|
|
- }
|
|
|
|
|
|
+// if (!"ITSOP".equals(systMenu.getOperSystId())) {
|
|
|
|
+// continue;
|
|
|
|
+// }
|
|
if (("N").equals(systMenu.getDelYn()) & systMenu.getMenuLevl() == 1) {
|
|
if (("N").equals(systMenu.getDelYn()) & systMenu.getMenuLevl() == 1) {
|
|
// 레벨이 1 인 것이 최상위 메뉴이다, OPERSYST_MENU_ID, OPER_SYST_ID 는 NULL 로 들어가 있다.
|
|
// 레벨이 1 인 것이 최상위 메뉴이다, OPERSYST_MENU_ID, OPER_SYST_ID 는 NULL 로 들어가 있다.
|
|
systMenuMap.put(systMenu.getMenuId(), systMenu.getMenuName());
|
|
systMenuMap.put(systMenu.getMenuId(), systMenu.getMenuName());
|
|
@@ -59,9 +59,9 @@ public class TbUserGropMenuAthrService {
|
|
|
|
|
|
// 모든 메뉴에 대해서
|
|
// 모든 메뉴에 대해서
|
|
for (TbOperSystMenu systMenu : systMenus) {
|
|
for (TbOperSystMenu systMenu : systMenus) {
|
|
- if (!"ITSOP".equals(systMenu.getOperSystId())) {
|
|
|
|
- continue;
|
|
|
|
- }
|
|
|
|
|
|
+// if (!"ITSOP".equals(systMenu.getOperSystId())) {
|
|
|
|
+// continue;
|
|
|
|
+// }
|
|
if (("Y").equals(systMenu.getDelYn()) || systMenu.getMenuLevl() == 1) {
|
|
if (("Y").equals(systMenu.getDelYn()) || systMenu.getMenuLevl() == 1) {
|
|
// 메뉴레벨이 1인 최상위 메뉴는 제외한다.
|
|
// 메뉴레벨이 1인 최상위 메뉴는 제외한다.
|
|
continue;
|
|
continue;
|