From 8076639088a150474da9e0584b733673b3065fed Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 20 12월 2021 11:41:16 +0900 Subject: [PATCH] - 이슈상세에서 하위이슈 추가 검색시 상위 이슈는 검색 리스트에서 나오지 말아야함 - 이슈상세에서 연관 이슈/하위 이슈 리스트 전체 불러오기 --- src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js b/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js index 6271c6a..16e8fd0 100644 --- a/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js +++ b/src/main/webapp/scripts/app/workspace/workspaceUserConfig.controller.js @@ -64,7 +64,7 @@ $scope.$on("getUserWorkspaceList", function () { $scope.fn.getLevels(); $scope.fn.getDepartments(); - $scope.fn.makeTableConfigs(); + $scope.fn.getUserWorkspaceList(0); }); @@ -271,22 +271,25 @@ } // �궗�슜�옄媛� �냽�빐�엳�뒗 遺��꽌 �닔�젙 �뙘�뾽 - function modifyUserDepartments(id) { + function modifyUserDepartments(id, userId) { $uibModal.open({ - templateUrl : 'views/workspace/workspaceDepartmentModify.html', - size : "xlg", - controller : 'workspaceDepartmentModifyController', + templateUrl : 'views/workspace/workspaceUserDepartmentModify.html', + size : "md", + controller : 'workspaceUserDepartmentModifyController', backdrop : 'static', windowClass : 'workflow-window', resolve : { parameter : function () { return { - id : id + id : id, + userId : userId }; } } }); } + + $scope.fn.makeTableConfigs(); } ]); } -- Gitblit v1.8.0