- 이슈 유형 리스트 가져오기 오류 수정
- 이슈 유형 입력/수정시 사이드바 메뉴 리스트 수정
| | |
| | | $scope.fn.makeIssueSearch(args.projectKey, args.issueNumber); |
| | | }); |
| | | |
| | | // 이슈 유형 변경시 |
| | | $scope.$on("modifyIssueType", function (event, args) { |
| | | findIssueList($rootScope.workProject != null ? $rootScope.workProject.id : null); |
| | | }); |
| | | |
| | | // 프로젝트 목록 화면 새로 고침시 |
| | | $scope.$on("getProjectList", function () { |
| | | findAllWorkproject(); |
| | |
| | | |
| | | if (result.data.message.status === "success") { |
| | | $rootScope.workIssueTypes = result.data.data; |
| | | if ($rootScope.workIssueTypes != null) { |
| | | changeIssueListMenu($rootScope.workIssueTypes[0].id); |
| | | } |
| | | } |
| | | else { |
| | | SweetAlert.error($filter("translate")("managementType.failedToIssueTypeList"), result.data.message.message); // "이슈 유형 목록 조회 실패" |
| | |
| | | |
| | | if (result.data.message.status === "success") { |
| | | $scope.fn.cancel(); |
| | | $rootScope.$broadcast("modifyIssueType", {}); |
| | | // 목록 화면 갱신 |
| | | $rootScope.$broadcast("getIssueTypeList", {}); |
| | | } |
| | |
| | | |
| | | if (result.data.message.status === "success") { |
| | | $scope.fn.cancel(); |
| | | $rootScope.$broadcast("modifyIssueType", {}); |
| | | // 목록 화면 갱신 |
| | | $rootScope.$broadcast("getIssueTypeList", {}); |
| | | } |