| | |
| | | severities : [], // 중요도 정보 |
| | | fileTableConfigs : [], // 파일 업로드 정보 테이블 |
| | | inheritPartners : parameter.inheritPartners, |
| | | downTotalCount : parameter.downTotalCount |
| | | downTotalCount : parameter.downTotalCount, |
| | | usePartner : parameter.usePartner, |
| | | }; |
| | | |
| | | // 연관 일감 관련 |
| | |
| | | |
| | | function formSubmit() { |
| | | $rootScope.spinner = true; |
| | | |
| | | let inheritYn = false; |
| | | |
| | | var content = { |
| | |
| | | })() |
| | | }; |
| | | |
| | | if ($scope.vm.inheritPartners && $scope.vm.downTotalCount > 0) { |
| | | if ($rootScope.isDefined($scope.vm.usePartner) && $scope.vm.usePartner.length > 0 |
| | | && $rootScope.isDefined($scope.vm.inheritPartners) && $scope.vm.inheritPartners |
| | | && $rootScope.isDefined($scope.vm.downTotalCount) && $scope.vm.downTotalCount > 0) { |
| | | SweetAlert.swal({ |
| | | title : $filter("translate")("issue.modifyDownIssue"), // 하위 이슈 변경 |
| | | text : $filter("translate")("issue.wantToInheritPartnersOfParentIssue"), // 상위이슈의 파트너 정보(업체/ISP/호스팅)를 적용시키겠습니까? |
| | | title : $filter("translate")("issue.modifyIssues"), // 이슈 변경 |
| | | text : $filter("translate")("issue.wantToInheritPartnersOfIssue"), // 현재 이슈의 파트너 정보(업체/ISP/호스팅)를 모든 하위이슈에 일괄 적용시키겠습니까? |
| | | type : "warning", |
| | | showCancelButton : true, |
| | | confirmButtonColor : "#DD6B55", |
| | |
| | | function (isConfirm) { |
| | | if (isConfirm) { |
| | | inheritYn = true; |
| | | content.inheritYn = true; |
| | | } |
| | | |
| | | Issue.modify({ |