| | |
| | | companyTel : "", // 업체 전화번호 |
| | | companyEmail : "", // 업체 이메일 |
| | | companyUrl : "", // 업체 url |
| | | ipStart : "", //ip시작주소 |
| | | ipEnd : "", //ip종료주소 |
| | | companyMemo : "", // 업체 비고 |
| | | ispId : -1, // ISP ID |
| | | ispName : "", // ISP 명 |
| | |
| | | $scope.vm.companyTel = result[0].tel; |
| | | $scope.vm.companyEmail = result[0].email; |
| | | $scope.vm.companyUrl = result[0].url; |
| | | $scope.vm.ipStart = result[0].ipStart; |
| | | $scope.vm.ipEnd = result[0].ipEnd; |
| | | $scope.vm.companyMemo = result[0].memo; |
| | | $scope.vm.form.companyTypeId = result[0].companyTypeId; |
| | | $scope.vm.form.parentSectorId = result[0].parentSectorId; |
| | |
| | | companyTel : $scope.vm.companyTel, |
| | | companyEmail :$scope.vm.companyEmail, |
| | | companyUrl : $scope.vm.companyUrl, |
| | | ipStart :$scope.vm.ipStart, |
| | | ipEnd :$scope.vm.ipEnd, |
| | | companyMemo : $scope.vm.companyMemo, |
| | | companyTypeId : (function () { |
| | | var companyTypeId = -1; |
| | |
| | | tel : $scope.vm.companyTel, |
| | | email :$scope.vm.companyEmail, |
| | | url :$scope.vm.companyUrl, |
| | | ipStart :$scope.vm.ipStart, |
| | | ipEnd :$scope.vm.ipEnd, |
| | | memo : $scope.vm.companyMemo, |
| | | companyTypeId : $scope.vm.form.companyTypeId, |
| | | parentSectorId : $scope.vm.form.parentSectorId, |
| | |
| | | }).then(function (result) { |
| | | |
| | | if (result.data.message.status === "success") { |
| | | $scope.fn.addDownIssue(result.data.data, result.data.content); |
| | | $scope.fn.addDownIssue(result.data.data); |
| | | |
| | | // 이슈 상세 화면 요청 |
| | | $rootScope.$broadcast("getIssueDetail", { |
| | |
| | | } |
| | | |
| | | // 하위 이슈 추가 |
| | | function addDownIssue(downId, inheritYn) { |
| | | function addDownIssue(issueVo) { |
| | | $rootScope.spinner = true; |
| | | let inheritYn = issueVo.inheritPartners; |
| | | let usePartner = issueVo.usePartner; |
| | | |
| | | var ids = []; |
| | | if (downId != null) { |
| | | ids.push(downId); |
| | | if (issueVo.id != null) { |
| | | ids.push(issueVo.id); |
| | | } |
| | | |
| | | if ($rootScope.isDefined(inheritYn) && inheritYn) { |
| | | if ($rootScope.isDefined(usePartner) && usePartner > 0 |
| | | && $rootScope.isDefined(inheritYn) && inheritYn) { |
| | | SweetAlert.swal({ |
| | | title : $filter("translate")("issue.addDownIssue"), // 하위 이슈 추가 |
| | | text : $filter("translate")("issue.wantToInheritPartnersOfParentIssue"), // 상위이슈의 파트너 정보(업체/ISP/호스팅)를 적용시키겠습니까? |
| | |
| | | $resourceProvider.getPageContent(0, 10))).then(function (result) { |
| | | |
| | | if (result.data.message.status === "success") { |
| | | SweetAlert.close(); |
| | | $scope.fn.cancel(); |
| | | // 이슈 상세 화면 요청 |
| | | $rootScope.$broadcast("getIssueDetail", { |
| | | id : parameter.id |