OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2021-12-21 4ca3a63a192a8a2a03f287ee406780b78f359b89
src/main/webapp/scripts/app/issue/issueAddDownTableConfig.controller.js
@@ -24,48 +24,61 @@
                $scope.vm = {
                    issueId : "",
                    issueDownTableConfigs : [{
                        name : $filter("translate")("common.priority"), // 우선순위
                        key : "PRIORITY",
                        name : $filter("translate")("issue.downIssueTitle"), // 하위 이슈 제목
                        key : "DOWN_ISSUE_TITLE",
                        width : "width-80-p",
                        position : 1,
                        display : false
                    }, {
                        name : $filter("translate")("common.importance"), // 중요도
                        key : "SEVERITY",
                        width : "width-80-p",
                        position : 2,
                        display : false
                    }, {
                        name : $filter("translate")("common.assigneeTeam"), // 담당부서
                        key : "ASSIGNEE_TEAM",
                        width : "width-100-p",
                        position : 3,
                        display : false
                    }, {
                        name : $filter("translate")("common.register"), // 등록자
                        key : "REGISTER",
                        width : "width-100-p",
                        position : 4,
                        display : false
                    }, {
                        name : $filter("translate")("common.period"), // 기간
                        key : "PERIOD",
                        width : "width-140-p",
                        position : 5,
                        display : false
                    }, {
                        name : $filter("translate")("common.lastChangeDate"), // 최근 변경일
                        key : "MODIFY_DATE",
                        width : "width-100-p",
                        position : 6,
                        display : false
                        position : 0,
                        display : true,
                        checkboxShow : false
                    }, {
                        name : $filter("translate")("issue.issueStatus"), // 이슈 상태
                        key : "ISSUE_DOWN_STATUS_TYPE",
                        width : "width-50-p",
                        position : 1,
                        display : false,
                        checkboxShow : true
                    }, {
                        name : $filter("translate")("common.priority"), // 우선순위
                        key : "DOWN_PRIORITY",
                        width : "width-50-p",
                        position : 2,
                        display : false,
                        checkboxShow : true
                    }, {
                        name : $filter("translate")("common.importance"), // 중요도
                        key : "DOWN_SEVERITY",
                        width : "width-50-p",
                        position : 3,
                        display : false,
                        checkboxShow : true
                    }, {
                        name : $filter("translate")("common.assigneeTeam"), // 담당부서
                        key : "DOWN_ASSIGNEE_TEAM",
                        width : "width-50-p",
                        position : 4,
                        display : false,
                        checkboxShow : true
                    }, {
                        name : $filter("translate")("common.register"), // 등록자
                        key : "DOWN_REGISTER",
                        width : "width-50-p",
                        position : 5,
                        display : false,
                        checkboxShow : true
                    }, {
                        name : $filter("translate")("common.period"), // 기간
                        key : "DOWN_PERIOD",
                        width : "width-100-p",
                        position : 6,
                        display : false,
                        checkboxShow : true
                    }, {
                        name : $filter("translate")("common.lastChangeDate"), // 최근 변경일
                        key : "DOWN_MODIFY_DATE",
                        width : "width-100-p",
                        position : 7,
                        display : false
                    },{
                        display : false,
                        checkboxShow : true
                    }]
                };
@@ -137,7 +150,7 @@
                    var content = {
                        issueId : $rootScope.currentDetailIssueId,
                        delValue : $scope.vm.issueDownTableConfigs.splice(7,1),
                        //delValue : $scope.vm.issueDownTableConfigs.splice(8,1),
                        issueTypeId : $rootScope.getCurrentIssueTypeId(),
                        issueTableConfigs : JSON.stringify($scope.vm.issueDownTableConfigs)
                    };
@@ -163,6 +176,7 @@
                            key : "CUSTOM_FIELD_" + customField.id,
                            width : "width-100-p",
                            display : false,
                            checkboxShow : true,
                            position : count
                        });