OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-02-18 71b8c61b79be17f9ac886b947051d3256a32f159
src/main/webapp/scripts/app/issue/issueModify.controller.js
@@ -39,7 +39,12 @@
                    setIssueTypeTemplate : setIssueTypeTemplate,    //  이슈 유형 템플릿 적용하기
                    startExecute : startExecute, //  최초 실행
                    containsPartner : containsPartner,
                    getPartners : getPartners
                    getPartners : getPartners,
                    getCompanyTypeListCallBack : getCompanyTypeListCallBack,
                    getParentSectorListCallBack : getParentSectorListCallBack,
                    getChildSectorListCallBack : getChildSectorListCallBack,
                    getRegionListCallBack : getRegionListCallBack,
                    getStatusListCallBack : getStatusListCallBack,
                };
                $scope.vm = {
@@ -55,7 +60,7 @@
                        issueCompanyFields : [], // 업체정보
                        issueIspFields : [], // ISP 정보
                        issueHostingFields : [], // 호스팅정보
                        issueTypeId : "",   //  이슈 유형 아이디
                        issueTypeId : parameter.issueTypeId,   //  이슈 유형 아이디
                        priorityId : "",    //  우선순위 아이디
                        severityId : "",    //  중요도 아이디
                        issueStatusId : "", //  이슈 상태 아이디
@@ -66,6 +71,23 @@
                        startCompleteDateRange : "", //  시작일 ~ 종료일
                        issueCustomFields : [],  //  이슈에서 사용되는 사용자 정의 필드
                        removeFiles : [],   //  삭제한 파일 정보
                        companyTypeId : "",
                        companyType : "", //기업구분
                        parentSectorId : "",
                        parentSector : "", //업종(대분류)
                        childSectorId : "",
                        childSector : "", //업종(중분류)
                        regionId : "",
                        region : "", //지역
                        statusId : "",
                        status : "", //상태
                    },
                    typeCategory : {
                        companyType : "COMPANYTYPE",
                        parentSector : "PARENTSECTOR",
                        childSector : "CHILDSECTOR",
                        region : "REGION",
                        status : "STATUS"
                    },
                    projectName : "",   //  프로젝트 명 검색
                    userName : "",  //  사용자 검색
@@ -75,6 +97,7 @@
                    companyManager : "",   // 업체 담당자
                    companyTel : "",  // 업체 전화번호
                    companyEmail : "",  // 업체 이메일
                    companyUrl : "",  // 업체 url
                    companyMemo : "",  // 업체 비고
                    ispId : -1,
                    ispName : "", // ISP 명
@@ -82,6 +105,7 @@
                    ispManager : "", // ISP 담당자
                    ispTel : "", // ISP 전화번호
                    ispEmail : "", // ISP 이메일
                    ispUrl : "",  // url
                    ispMemo : "", // ISP 비고
                    hostingId : -1,
                    hostingName : "", // 호스팅명 검색
@@ -89,6 +113,7 @@
                    hostingCode : "", // 호스팅 코드
                    hostingTel : "", // 호스팅 전화번호
                    hostingEmail : "", // 호스팅 이메일
                    hostingUrl : "",  // url
                    hostingMemo : "", // 호스팅 비고
                    autoCompletePage : {
                        // user : {
@@ -114,6 +139,26 @@
                        hostingField : {
                            page : 0,
                            totalPage : 0
                        },
                        companyType : {
                            page : 0,
                            totalPage : 0
                        },
                        parentSector : {
                            page : 0,
                            totalPage : 0
                        },
                        childSector : {
                            page : 0,
                            totalPage : 0
                        },
                        region : {
                            page : 0,
                            totalPage : 0
                        },
                        status : {
                            page : 0,
                            totalPage : 0
                        }
                    },
                    summerNote : {
@@ -124,6 +169,8 @@
                    priorities : [],    //  우선순위 정보
                    severities : [],    //  중요도 정보
                    fileTableConfigs : [],   //  파일 업로드 정보 테이블
                    inheritPartners : parameter.inheritPartners,
                    downTotalCount : parameter.downTotalCount
                };
                // 연관 일감 관련
@@ -353,6 +400,39 @@
                    $scope.vm.autoCompletePage.hostingField.totalPage = result.data.page.totalPage;
                }
                // 업체 카테고리 autocomplete page 업데이트
                function getCompanyTypeListCallBack(result) {
                    $scope.vm.autoCompletePage.companyType.totalPage = result.data.page.totalPage;
                }
                // 업체 카테고리 autocomplete page 업데이트
                function getParentSectorListCallBack(result, value) {
                    if (value === "") {
                        $scope.vm.form.parentSectorId = "";
                        if ($rootScope.isDefined($scope.vm.form.parentSectors) && $rootScope.isDefined($scope.vm.form.parentSectors[0])) {
                            $scope.vm.form.parentSectors[0].id = "";
                        }
                        $scope.vm.form.childSectorId = "";
                        $scope.vm.form.childSector = "";
                        $scope.vm.form.childSectors = [];
                    }
                    $scope.vm.autoCompletePage.parentSector.totalPage = result.data.page.totalPage;
                }
                // 업체 카테고리 autocomplete page 업데이트
                function getChildSectorListCallBack(result) {
                    $scope.vm.autoCompletePage.childSector.totalPage = result.data.page.totalPage;
                }
                // 업체 카테고리 autocomplete page 업데이트
                function getRegionListCallBack(result) {
                    $scope.vm.autoCompletePage.region.totalPage = result.data.page.totalPage;
                }
                // 업체 카테고리 autocomplete page 업데이트
                function getStatusListCallBack(result) {
                    $scope.vm.autoCompletePage.status.totalPage = result.data.page.totalPage;
                }
                function formCheck(formInvalid) {
                    if (formInvalid) {
@@ -366,265 +446,458 @@
                    return false;
                }
                $scope.$on("companyTypeEvent", function (event, result) {
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.form.companyTypeId = result[0].id;
                    }
                });
                $scope.$on("parentSectorEvent", function (event, result) {
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.form.parentSectorId = result[0].id;
                    }  else {
                        $scope.vm.form.parentSectorId = "";
                        if ($rootScope.isDefined($scope.vm.form.parentSectors) && $rootScope.isDefined($scope.vm.form.parentSectors[0])) {
                            $scope.vm.form.parentSectors[0].id = "";
                        }
                    }
                    $scope.vm.form.childSectorId = "";
                    $scope.vm.form.childSector = "";
                    $scope.vm.form.childSectors = [];
                });
                $scope.$on("childSectorEvent", function (event, result) {
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.form.childSectorId = result[0].id;
                    }
                });
                $scope.$on("regionEvent", function (event, result) {
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.form.regionId = result[0].id;
                    }
                });
                $scope.$on("statusEvent", function (event, result) {
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.form.statusId = result[0].id;
                    }
                });
                // 업체정보 결과 값 Event 처리(set)
                $scope.$on("companyFieldEvent", function (event, result) {
                    $scope.vm.companyId = result[0].id;
                    $scope.vm.companyName = result[0].name;
                    $scope.vm.companyManager = result[0].manager;
                    $scope.vm.companyTel = result[0].tel;
                    $scope.vm.companyEmail = result[0].email;
                    $scope.vm.companyMemo = result[0].memo;
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        var ispFieldVo = result[0].ispFieldVo;
                        var hostingFieldVo = result[0].hostingFieldVo;
                        $scope.vm.companyId = result[0].id;
                        $scope.vm.companyName = result[0].name;
                        $scope.vm.companyManager = result[0].manager;
                        $scope.vm.companyTel = result[0].tel;
                        $scope.vm.companyEmail = result[0].email;
                        $scope.vm.companyUrl = result[0].url;
                        $scope.vm.companyMemo = result[0].memo;
                        $scope.vm.form.companyTypeId = result[0].companyTypeId;
                        $scope.vm.form.parentSectorId = result[0].parentSectorId;
                        $scope.vm.form.childSectorId = result[0].childSectorId;
                        $scope.vm.form.regionId = result[0].regionId;
                        $scope.vm.form.statusId = result[0].statusId;
                        $scope.vm.form.companyType = result[0].companyTypeName;
                        $scope.vm.form.parentSector = result[0].parentSectorName;
                        $scope.vm.form.childSector = result[0].childSectorName;
                        $scope.vm.form.region = result[0].regionName;
                        $scope.vm.form.status = result[0].statusName;
                        $scope.vm.ispId = "";
                        $scope.vm.ispName = "";
                        $scope.vm.ispCode = "";
                        $scope.vm.ispManager = "";
                        $scope.vm.ispTel = "";
                        $scope.vm.ispEmail = "";
                        $scope.vm.ispUrl = "";
                        $scope.vm.ispMemo = "";
                        $scope.vm.hostingId = "";
                        $scope.vm.hostingName = "";
                        $scope.vm.hostingCode = "";
                        $scope.vm.hostingManager = "";
                        $scope.vm.hostingTel = "";
                        $scope.vm.hostingEmail = "";
                        $scope.vm.hostingUrl = "";
                        $scope.vm.hostingMemo = "";
                        if (ispFieldVo != null) {
                            $scope.vm.form.issueIspFields[0] = angular.copy(ispFieldVo);
                            $scope.vm.ispId = ispFieldVo.id;
                            $scope.vm.ispName = ispFieldVo.name;
                            $scope.vm.ispCode = ispFieldVo.code;
                            $scope.vm.ispManager = ispFieldVo.manager;
                            $scope.vm.ispTel = ispFieldVo.tel;
                            $scope.vm.ispEmail = ispFieldVo.email;
                            $scope.vm.ispUrl = ispFieldVo.url;
                            $scope.vm.ispMemo = ispFieldVo.memo;
                        }
                        if (hostingFieldVo != null) {
                            $scope.vm.form.issueHostingFields[0] = angular.copy(hostingFieldVo);
                            $scope.vm.hostingId = hostingFieldVo.id;
                            $scope.vm.hostingName = hostingFieldVo.name;
                            $scope.vm.hostingCode = hostingFieldVo.code;
                            $scope.vm.hostingManager = hostingFieldVo.manager;
                            $scope.vm.hostingTel = hostingFieldVo.tel;
                            $scope.vm.hostingEmail = hostingFieldVo.email;
                            $scope.vm.hostingUrl = hostingFieldVo.url;
                            $scope.vm.hostingMemo = hostingFieldVo.memo;
                        }
                    }
                });
                // ISP정보 결과 값 Event 처리(set)
                $scope.$on("ispFieldEvent", function (event, result) {
                    $scope.vm.ispId = result[0].id;
                    $scope.vm.ispName = result[0].name;
                    $scope.vm.ispCode = result[0].code;
                    $scope.vm.ispManager = result[0].manager;
                    $scope.vm.ispTel = result[0].tel;
                    $scope.vm.ispEmail = result[0].email;
                    $scope.vm.ispMemo = result[0].memo;
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.ispId = result[0].id;
                        $scope.vm.ispName = result[0].name;
                        $scope.vm.ispCode = result[0].code;
                        $scope.vm.ispManager = result[0].manager;
                        $scope.vm.ispTel = result[0].tel;
                        $scope.vm.ispEmail = result[0].email;
                        $scope.vm.ispUrl = result[0].url;
                        $scope.vm.ispMemo = result[0].memo;
                    }
                });
                // 호스팅정보 결과 값 Event 처리(set)
                $scope.$on("hostingFieldEvent", function (event, result) {
                    $scope.vm.hostingId = result[0].id;
                    $scope.vm.hostingName = result[0].name;
                    $scope.vm.hostingCode = result[0].code;
                    $scope.vm.hostingManager = result[0].manager;
                    $scope.vm.hostingTel = result[0].tel;
                    $scope.vm.hostingEmail = result[0].email;
                    $scope.vm.hostingMemo = result[0].memo;
                    if ($rootScope.isDefined(result) && $rootScope.isDefined(result[0])) {
                        $scope.vm.hostingId = result[0].id;
                        $scope.vm.hostingName = result[0].name;
                        $scope.vm.hostingCode = result[0].code;
                        $scope.vm.hostingManager = result[0].manager;
                        $scope.vm.hostingTel = result[0].tel;
                        $scope.vm.hostingEmail = result[0].email;
                        $scope.vm.hostingUrl = result[0].url;
                        $scope.vm.hostingMemo = result[0].memo;
                    }
                });
                function formSubmit() {
                    $rootScope.spinner = true;
                    var content = {
                        id : parameter.id,
                        title : $rootScope.preventXss($scope.vm.form.title),    //  제목
                        description : $rootScope.preventXss($scope.vm.form.description),   //  내용
                        companyName : $scope.vm.companyName,
                        companyManager : $scope.vm.companyManager,
                        companyTel : $scope.vm.companyTel,
                        companyEmail :$scope.vm.companyEmail,
                        companyMemo : $scope.vm.companyMemo,
                        ispName : $scope.vm.ispName,
                        ispCode : $scope.vm.ispCode,
                        ispManager : $scope.vm.ispManager,
                        ispTel : $scope.vm.ispTel,
                        ispEmail : $scope.vm.ispEmail,
                        ispMemo : $scope.vm.ispMemo,
                        hostingName : $scope.vm.hostingName,
                        hostingCode : $scope.vm.hostingCode,
                        hostingManager : $scope.vm.hostingManager,
                        hostingTel : $scope.vm.hostingTel,
                        hostingEmail : $scope.vm.hostingEmail,
                        hostingMemo : $scope.vm.hostingMemo,
                        projectId : (function () {   //  프로젝트 아이디
                            var projectId = "";
                            if ($scope.vm.form.projects.length > 0) {
                                projectId = $scope.vm.form.projects[0].id;
                            }
                            return projectId;
                        })(),
                        issueTypeId : $scope.vm.form.issueTypeId,   //  이슈 유형 아이디
                        priorityId : $scope.vm.form.priorityId,    //  우선순위 아이디
                        severityId : $scope.vm.form.severityId,    //  중요도 아이디
                        issueStatusId : $scope.vm.form.issueStatusId,   //  이슈 상태 아이디
                        companyId : (function () {
                            var companyId = -1;
                            if ($scope.vm.form.issueCompanyFields.length > 0) {
                                companyId = $scope.vm.form.issueCompanyFields[0].id;
                            }
                            return companyId;
                        }),
                        ispId : (function () {
                            var ispId = -1;
                            if ($scope.vm.form.issueIspFields.length > 0) {
                                ispId = $scope.vm.form.issueIspFields[0].id;
                            }
                            return ispId;
                        }),
                        hostingId : (function () {
                            var hostingId = -1;
                            if ($scope.vm.form.issueHostingFields.length > 0) {
                                hostingId = $scope.vm.form.issueHostingFields[0].id;
                            }
                            return hostingId;
                        }),
                        userIds : (function () {
                            var userIds = [];
                            angular.forEach($scope.vm.form.users, function (user) {
                                userIds.push(user.id);
                            });
                            return userIds;
                        })(),
                        departmentIds : (function () {
                            var departmentIds = [];
                            angular.forEach($scope.vm.form.departments, function (department) {
                                departmentIds.push(department.id);
                            });
                            return departmentIds;
                        })(),
                        attachedFileIds : (function () {
                            var attachedFileIds = [];
                            angular.forEach($scope.vm.form.attachedFiles, function (attachedFile) {
                                if ($scope.vm.form.description.indexOf(attachedFile.path) !== -1) {
                                    attachedFileIds.push(attachedFile.id);
                    let inheritYn = false;
                    if ($scope.vm.inheritPartners && $scope.vm.downTotalCount > 0) {
                        SweetAlert.swal({
                                title : $filter("translate")("issue.modifyDownIssue"), // 하위 이슈 변경
                                text : $filter("translate")("issue.wantToInheritPartnersOfParentIssue"), // 상위이슈의 파트너 정보(업체/ISP/호스팅)를 적용시키겠습니까?
                                type : "warning",
                                showCancelButton : true,
                                confirmButtonColor : "#DD6B55",
                                confirmButtonText : $filter("translate")("common.ok"), // 네
                                cancelButtonText : $filter("translate")("common.no"), // 아니오
                                closeOnConfirm : false,
                                closeOnCancel : false
                            },
                            function (isConfirm) {
                                if (isConfirm) {
                                    inheritYn = true;
                                }
                            });
                            return attachedFileIds;
                        })(),
                                var content = {
                                    id : parameter.id,
                                    title : $rootScope.preventXss($scope.vm.form.title),    //  제목
                                    description : $rootScope.preventXss($scope.vm.form.description),   //  내용
                                    inheritYn : inheritYn,
                                    companyName : $scope.vm.companyName,
                                    companyManager : $scope.vm.companyManager,
                                    companyTel : $scope.vm.companyTel,
                                    companyEmail :$scope.vm.companyEmail,
                                    companyUrl : $scope.vm.companyUrl,
                                    companyMemo : $scope.vm.companyMemo,
                        issueCompanyFields : (function () {
                            var issueCompanyFields = [];
                            if ($scope.vm.form.issueCompanyFields != null && $scope.vm.form.issueCompanyFields.length > 0 ){
                                var companyField = $scope.vm.form.issueCompanyFields[0];
                                    companyTypeId : (function () {
                                        var companyTypeId = null;
                                        if ($scope.vm.form.companyTypes != null && $scope.vm.form.companyTypes.length > 0) {
                                            companyTypeId = $scope.vm.form.companyTypes[0].id;
                                        } else {
                                            companyTypeId = $scope.vm.form.companyTypeId;
                                        }
                                        return companyTypeId;
                                    })(),
                                    parentSectorId : (function () {
                                        var parentSectorId = null;
                                        if ($scope.vm.form.parentSectors != null && $scope.vm.form.parentSectors.length > 0) {
                                            parentSectorId = $scope.vm.form.parentSectors[0].id;
                                        } else {
                                            parentSectorId = $scope.vm.form.parentSectorId;
                                        }
                                        return parentSectorId;
                                    })(),
                                    childSectorId : (function () {
                                        var childSectorId = null;
                                        if ($scope.vm.form.childSectors != null && $scope.vm.form.childSectors.length > 0) {
                                            childSectorId = $scope.vm.form.childSectors[0].id;
                                        } else {
                                            childSectorId = $scope.vm.form.childSectorId;
                                        }
                                        return childSectorId;
                                    })(),
                                    regionId : (function () {
                                        var regionId = null;
                                        if ($scope.vm.form.regions != null && $scope.vm.form.regions.length > 0) {
                                            regionId = $scope.vm.form.regions[0].id;
                                        } else {
                                            regionId = $scope.vm.form.regionId;
                                        }
                                        return regionId;
                                    })(),
                                    statusId : (function () {
                                        var statusId = null;
                                        if ($scope.vm.form.statuses != null && $scope.vm.form.statuses.length > 0) {
                                            statusId = $scope.vm.form.statuses[0].id;
                                        } else {
                                            statusId = $scope.vm.form.statusId;
                                        }
                                        return statusId;
                                    })(),
                                    statusName : $scope.vm.form.status,
                                issueCompanyFields.push({
                                    id : companyField.id,
                                    companyId : $scope.vm.companyId,
                                    name : $scope.vm.companyName,
                                    manager : $scope.vm.companyManager,
                                    tel : $scope.vm.companyTel,
                                    email :$scope.vm.companyEmail,
                                    memo : $scope.vm.companyMemo
                                    ispName : $scope.vm.ispName,
                                    ispCode : $scope.vm.ispCode,
                                    ispManager : $scope.vm.ispManager,
                                    ispTel : $scope.vm.ispTel,
                                    ispEmail : $scope.vm.ispEmail,
                                    ispUrl : $scope.vm.ispUrl,
                                    ispMemo : $scope.vm.ispMemo,
                                    hostingName : $scope.vm.hostingName,
                                    hostingCode : $scope.vm.hostingCode,
                                    hostingManager : $scope.vm.hostingManager,
                                    hostingTel : $scope.vm.hostingTel,
                                    hostingEmail : $scope.vm.hostingEmail,
                                    hostingUrl : $scope.vm.hostingUrl,
                                    hostingMemo : $scope.vm.hostingMemo,
                                    projectId : (function () {   //  프로젝트 아이디
                                        var projectId = "";
                                        if ($scope.vm.form.projects.length > 0) {
                                            projectId = $scope.vm.form.projects[0].id;
                                        }
                                        return projectId;
                                    })(),
                                    issueTypeId : $scope.vm.form.issueTypeId,   //  이슈 유형 아이디
                                    priorityId : $scope.vm.form.priorityId,    //  우선순위 아이디
                                    severityId : $scope.vm.form.severityId,    //  중요도 아이디
                                    issueStatusId : $scope.vm.form.issueStatusId,   //  이슈 상태 아이디
                                    companyId : (function () {
                                        var companyId = null;
                                        if ($scope.vm.form.issueCompanyFields != null && $scope.vm.form.issueCompanyFields.length > 0) {
                                            companyId = $scope.vm.form.issueCompanyFields[0].id;
                                        }
                                        return companyId;
                                    }),
                                    ispId : (function () {
                                        var ispId = null;
                                        if ($scope.vm.form.issueIspFields != null && $scope.vm.form.issueIspFields.length > 0) {
                                            ispId = $scope.vm.form.issueIspFields[0].id;
                                        }
                                        return ispId;
                                    }),
                                    hostingId : (function () {
                                        var hostingId = null;
                                        if ($scope.vm.form.issueHostingFields != null && $scope.vm.form.issueHostingFields.length > 0) {
                                            hostingId = $scope.vm.form.issueHostingFields[0].id;
                                        }
                                        return hostingId;
                                    }),
                                    userIds : (function () {
                                        var userIds = [];
                                        angular.forEach($scope.vm.form.users, function (user) {
                                            userIds.push(user.id);
                                        });
                                        return userIds;
                                    })(),
                                    departmentIds : (function () {
                                        var departmentIds = [];
                                        angular.forEach($scope.vm.form.departments, function (department) {
                                            departmentIds.push(department.id);
                                        });
                                        return departmentIds;
                                    })(),
                                    attachedFileIds : (function () {
                                        var attachedFileIds = [];
                                        angular.forEach($scope.vm.form.attachedFiles, function (attachedFile) {
                                            if ($scope.vm.form.description.indexOf(attachedFile.path) !== -1) {
                                                attachedFileIds.push(attachedFile.id);
                                            }
                                        });
                                        return attachedFileIds;
                                    })(),
                                    issueCompanyFields : (function () {
                                        var issueCompanyFields = [];
                                        if ($scope.vm.form.issueCompanyFields != null && $scope.vm.form.issueCompanyFields.length > 0 ){
                                            var companyField = $scope.vm.form.issueCompanyFields[0];
                                            //사용자가 직접 업체 추가 할 경우
                                            if ($rootScope.isDefined(companyField) && companyField.name !== $scope.vm.companyName) {
                                                return issueCompanyFields;
                                            }
                                            issueCompanyFields.push({
                                                id : companyField.id,
                                                companyId : $scope.vm.companyId,
                                                name : $scope.vm.companyName,
                                                manager : $scope.vm.companyManager,
                                                tel : $scope.vm.companyTel,
                                                email :$scope.vm.companyEmail,
                                                url :$scope.vm.companyUrl,
                                                memo : $scope.vm.companyMemo,
                                                companyTypeId : $scope.vm.form.companyTypeId,
                                                parentSectorId : $scope.vm.form.parentSectorId,
                                                childSectorId : $scope.vm.form.childSectorId,
                                                regionId : $scope.vm.form.regionId,
                                                statusId : $scope.vm.form.statusId,
                                                statusName : $scope.vm.form.status
                                            });
                                        }
                                        return issueCompanyFields;
                                    })(),
                                    issueIspFields : (function () {
                                        var issueIspFields = [];
                                        if ($scope.vm.form.issueCompanyFields != null && $scope.vm.form.issueCompanyFields.length > 0
                                            && $scope.vm.form.issueCompanyFields[0].ispFieldVo != null
                                            || $scope.vm.form.issueIspFields != null && $scope.vm.form.issueIspFields.length > 0 ){
                                            var ispField = $scope.vm.form.issueIspFields[0];
                                            //사용자가 직접 ISP 추가 할 경우
                                            if ($rootScope.isDefined(ispField) && ispField.name !== $scope.vm.ispName) {
                                                return issueIspFields;
                                            }
                                            issueIspFields.push({
                                                ispId : $scope.vm.ispId,
                                                code : $scope.vm.ispCode,
                                                name : $scope.vm.ispName,
                                                manager : $scope.vm.ispManager,
                                                tel : $scope.vm.ispTel,
                                                email :$scope.vm.ispEmail,
                                                url :$scope.vm.ispUrl,
                                                memo : $scope.vm.ispMemo
                                            });
                                        }
                                        return issueIspFields;
                                    })(),
                                    issueHostingFields : (function () {
                                        var issueHostingFields = [];
                                        if ($scope.vm.form.issueCompanyFields != null && $scope.vm.form.issueCompanyFields.length > 0
                                            && $scope.vm.form.issueCompanyFields[0].hostingFieldVo != null
                                            || $scope.vm.form.issueHostingFields != null && $scope.vm.form.issueHostingFields.length > 0 ){
                                            var hostingField = $scope.vm.form.issueHostingFields[0];
                                            //사용자가 직접 호스팅 추가 할 경우
                                            if ($rootScope.isDefined(hostingField) && hostingField.name !== $scope.vm.hostingName) {
                                                return issueHostingFields;
                                            }
                                            issueHostingFields.push({
                                                hostingId : $scope.vm.hostingId,
                                                name : $scope.vm.hostingName,
                                                code : $scope.vm.hostingCode,
                                                manager : $scope.vm.hostingManager,
                                                tel : $scope.vm.hostingTel,
                                                email :$scope.vm.hostingEmail,
                                                url :$scope.vm.hostingUrl,
                                                memo : $scope.vm.hostingMemo
                                            });
                                        }
                                        return issueHostingFields;
                                    })(),
                                    removeFiles : $scope.vm.form.removeFiles,
                                    startCompleteDateRange : $scope.vm.form.startCompleteDateRange,
                                    issueCustomFields : (function () {    //  이슈에서 사용되는 사용자 정의 필드
                                        var issueCustomFields = [];
                                        angular.forEach($scope.vm.form.issueCustomFields, function (issueCustomField) {
                                            var useValues = [];
                                            if (angular.isArray(issueCustomField.useValues)) {
                                                angular.forEach(issueCustomField.useValues, function (useValue) {
                                                    useValues.push(useValue.value);
                                                });
                                            }
                                            else {
                                                useValues.push(issueCustomField.useValues);
                                            }
                                            //  useValues 를 배열로 변환한다.
                                            var temp = angular.copy(issueCustomField);
                                            temp.useValues = useValues;
                                            issueCustomFields.push(temp);
                                        });
                                        return issueCustomFields;
                                    })()
                                };
                                Issue.modify({
                                    method : "POST",
                                    file : (function () {
                                        var files = [];
                                        angular.forEach($scope.vm.form.files, function (file) {
                                            if (angular.isUndefined(file.id)) {
                                                files.push(file);
                                            }
                                        });
                                        return files;
                                    })(),
                                    //      data 속성으로 별도의 데이터 전송
                                    fields : {
                                        content : content
                                    },
                                    fileFormDataName : "file"
                                }).then(function (result) {
                                    if (result.data.message.status === "success") {
                                        $scope.fn.cancel();
                                        //  이슈 상세 화면 요청
                                        $rootScope.$broadcast("getIssueDetail", {
                                            id : parameter.id
                                        });
                                        $rootScope.$broadcast("getIssueList");
                                    }
                                    else {
                                        SweetAlert.error($filter("translate")("issue.failedIssueModify"), result.data.message.message); // 이슈 수정 실패
                                    }
                                    $rootScope.spinner = false;
                                });
                            }
                            return issueCompanyFields;
                        })(),
                        issueIspFields : (function () {
                            var issueIspFields = [];
                            if ($scope.vm.form.issueIspFields != null && $scope.vm.form.issueIspFields.length > 0 ){
                                var ispField = $scope.vm.form.issueIspFields[0];
                                issueIspFields.push({
                                    id : ispField.id,
                                    ispId : $scope.vm.ispId,
                                    code : $scope.vm.ispCode,
                                    name : $scope.vm.ispName,
                                    manager : $scope.vm.ispManager,
                                    tel : $scope.vm.ispTel,
                                    email :$scope.vm.ispEmail,
                                    memo : $scope.vm.ispMemo
                                });
                            }
                            return issueIspFields;
                        })(),
                        issueHostingFields : (function () {
                            var issueHostingFields = [];
                            if ($scope.vm.form.issueHostingFields != null && $scope.vm.form.issueHostingFields.length > 0 ){
                                var hostingField = $scope.vm.form.issueHostingFields[0];
                                issueHostingFields.push({
                                    id : hostingField.id,
                                    hostingId : $scope.vm.hostingId,
                                    name : $scope.vm.hostingName,
                                    code : $scope.vm.hostingCode,
                                    manager : $scope.vm.hostingManager,
                                    tel : $scope.vm.hostingTel,
                                    email :$scope.vm.hostingEmail,
                                    memo : $scope.vm.hostingMemo
                                });
                            }
                            return issueHostingFields;
                        })(),
                        removeFiles : $scope.vm.form.removeFiles,
                        startCompleteDateRange : $scope.vm.form.startCompleteDateRange,
                        issueCustomFields : (function () {    //  이슈에서 사용되는 사용자 정의 필드
                            var issueCustomFields = [];
                            angular.forEach($scope.vm.form.issueCustomFields, function (issueCustomField) {
                                var useValues = [];
                                if (angular.isArray(issueCustomField.useValues)) {
                                    angular.forEach(issueCustomField.useValues, function (useValue) {
                                        useValues.push(useValue.value);
                                    });
                                }
                                else {
                                    useValues.push(issueCustomField.useValues);
                                }
                                //  useValues 를 배열로 변환한다.
                                var temp = angular.copy(issueCustomField);
                                temp.useValues = useValues;
                                issueCustomFields.push(temp);
                            });
                            return issueCustomFields;
                        })()
                    };
                    Issue.modify({
                        method : "POST",
                        file : (function () {
                            var files = [];
                            angular.forEach($scope.vm.form.files, function (file) {
                                if (angular.isUndefined(file.id)) {
                                    files.push(file);
                                }
                            });
                            return files;
                        })(),
                        //      data 속성으로 별도의 데이터 전송
                        fields : {
                            content : content
                        },
                        fileFormDataName : "file"
                    }).then(function (result) {
                        if (result.data.message.status === "success") {
                            $scope.fn.cancel();
                            //  이슈 상세 화면 요청
                            $rootScope.$broadcast("getIssueDetail", {
                                id : parameter.id
                            });
                            $rootScope.$broadcast("getIssueList");
                        }
                        else {
                            SweetAlert.error($filter("translate")("issue.failedIssueModify"), result.data.message.message); // 이슈 수정 실패
                        }
                        $rootScope.spinner = false;
                    });
                    }
                }
                function cancel() {
@@ -793,8 +1066,8 @@
                //  이슈 상세 정보
                function detail() {
                    $rootScope.spinner = true;
                    var deferred = $q.defer();
                    Issue.detail($resourceProvider.getContent(
                        $scope.vm.search,
                        $resourceProvider.getPageContent(0, 1))).then(function (result) {
@@ -824,7 +1097,18 @@
                                    $scope.vm.companyManager = issueCompanyFieldValue.manager;
                                    $scope.vm.companyTel = issueCompanyFieldValue.tel;
                                    $scope.vm.companyEmail = issueCompanyFieldValue.email;
                                    $scope.vm.companyUrl = issueCompanyFieldValue.url;
                                    $scope.vm.companyMemo = issueCompanyFieldValue.memo;
                                    $scope.vm.form.companyTypeId = issueCompanyFieldValue.companyTypeId;
                                    $scope.vm.form.companyType = issueCompanyFieldValue.companyTypeName;
                                    $scope.vm.form.parentSectorId = issueCompanyFieldValue.parentSectorId;
                                    $scope.vm.form.parentSector = issueCompanyFieldValue.parentSectorName;
                                    $scope.vm.form.childSectorId = issueCompanyFieldValue.childSectorId;
                                    $scope.vm.form.childSector = issueCompanyFieldValue.childSectorName;
                                    $scope.vm.form.regionId = issueCompanyFieldValue.regionId;
                                    $scope.vm.form.region = issueCompanyFieldValue.regionName;
                                    $scope.vm.form.statusId = issueCompanyFieldValue.statusId;
                                    $scope.vm.form.status = issueCompanyFieldValue.statusName;
                                }
                                if (result.data.data.issueIspVos != null && result.data.data.issueIspVos.length > 0) {
                                    $scope.vm.form.issueIspFields = result.data.data.issueIspVos;
@@ -835,6 +1119,7 @@
                                    $scope.vm.ispManager = issueIspFieldValue.manager;
                                    $scope.vm.ispTel = issueIspFieldValue.tel;
                                    $scope.vm.ispEmail = issueIspFieldValue.email;
                                    $scope.vm.ispUrl = issueIspFieldValue.url;
                                    $scope.vm.ispMemo = issueIspFieldValue.memo;
                                }
@@ -847,6 +1132,7 @@
                                    $scope.vm.hostingManager = issueHostingFieldValue.manager;
                                    $scope.vm.hostingTel = issueHostingFieldValue.tel;
                                    $scope.vm.hostingEmail = issueHostingFieldValue.email;
                                    $scope.vm.hostingUrl = issueHostingFieldValue.url;
                                    $scope.vm.hostingMemo = issueHostingFieldValue.memo;
                                }
@@ -866,10 +1152,9 @@
                        else {
                            SweetAlert.error($filter("translate")("issue.failedToProjectDetails"), result.data.message.message); // 프로젝트 상세 정보 조회 실패
                        }
                        $rootScope.spinner = false;
                        deferred.resolve(result.data.data);
                    });
                    return deferred.promise;
                }
@@ -915,7 +1200,9 @@
                function getPartners() {
                    if($scope.vm.form.issueTypeId === ""){
                        $scope.vm.form.issueTypeId = $rootScope.issueTypeMenu.id
                        if ($rootScope.issueTypeMenu != null) {
                            $scope.vm.form.issueTypeId = $rootScope.issueTypeMenu.id
                        }
                    }
                    var content = {
                        issueTypeId : $scope.vm.form.issueTypeId,