From da08346c769258b6102cb4fe5348dc164ea2f3f7 Mon Sep 17 00:00:00 2001
From: jhjang <jhjang@maprex.co.kr>
Date: 일, 12 12월 2021 17:40:31 +0900
Subject: [PATCH] - 연관 이슈 추가 안되는 오류 수정 - 연관 이슈 추가 후 목록 안뜨는 문제 수정 - 이슈 목록 트리 구조 보기 기능 추가

---
 src/main/webapp/custom_components/js-tree/tree.provider.js |   75 -------------------------------------
 1 files changed, 0 insertions(+), 75 deletions(-)

diff --git a/src/main/webapp/custom_components/js-tree/tree.provider.js b/src/main/webapp/custom_components/js-tree/tree.provider.js
index 544308a..0e3afee 100644
--- a/src/main/webapp/custom_components/js-tree/tree.provider.js
+++ b/src/main/webapp/custom_components/js-tree/tree.provider.js
@@ -9,50 +9,23 @@
                         config : function () {
                             var tableConfig = {
                                 hName : "",	//	�뿤�뜑 �씠由�
-                                hWidth : "",	//	移쇰읆 湲몄씠
                                 hChecked : false,	//	泥댄겕 諛뺤뒪 �꽑�깮 �뿬遺�
-                                hAlign : "text-center",	//	�뿤�뜑 �젙�젹 湲곗�
-                                hSort : true,	//	�젙�젹 媛��뒫 �뿬遺�
                                 dName : "",	//	�뜲�씠�꽣 �씠由�
-                                dAlign : "text-left",	//	�뜲�씠�꽣 �젙�젹 湲곗�
-                                dRenderer : "",	//	�젋�뜑�윭 �뿬遺�
                                 dVisible : "",  //      bootstrap 諛섏쓳�삎 而щ읆 �몴�떆 �뿬遺�
                                 dType : "none",        // �깭洹� ���엯
                                 dDateFormat : "",   //  �궇吏� �삎�떇
-                                rowSpan : 0,    //  rowspan �쓣 吏��썝�븳�떎.
-                                colSpan : 0,    //  colspan �쓣 吏��썝�븳�떎.
                                 subHead : false,    //  留뚯빟 rowspan, colspan �쓣 �궗�슜�븯寃� �릺硫� true 濡� �뀑�똿.
                                 columnHint : "",    //  而щ읆 �젙蹂대�� 異붿텧�븯湲� �쐞�븳 �엺�듃 �젙蹂대�� 以��떎 - tableColumnGenerator �쓽 �궗�슜�옄 �젙�쓽 �븘�뱶 遺�遺꾩뿉�꽌 �궗�슜
                                 setHName : function (hName) {
                                     this.hName = hName;
                                     return this;
                                 },
-                                setHWidth : function (hWidth) {
-                                    this.hWidth = hWidth;
-                                    return this;
-                                },
                                 setHChecked : function (hChecked) {
                                     this.hChecked = hChecked;
                                     return this;
                                 },
-                                setHAlign : function (hAlign) {
-                                    this.hAlign = hAlign;
-                                    return this;
-                                },
-                                setHSort : function (hSort) {
-                                    this.hSort = hSort;
-                                    return this;
-                                },
                                 setDName : function (dName) {
                                     this.dName = dName;
-                                    return this;
-                                },
-                                setDAlign : function (dAlign) {
-                                    this.dAlign = dAlign;
-                                    return this;
-                                },
-                                setDRenderer : function (dRenderer) {
-                                    this.dRenderer = dRenderer;
                                     return this;
                                 },
                                 setDVisible : function (dVisible) {
@@ -67,14 +40,6 @@
                                     this.dDateFormat = dDateFormat;
                                     return this;
                                 },
-                                setRowSpan : function (dRowSpan) {
-                                    this.rowSpan = dRowSpan;
-                                    return this;
-                                },
-                                setColSpan : function (dColSpan) {
-                                    this.colSpan = dColSpan;
-                                    return this;
-                                },
                                 setSubHead : function (dSubHead) {
                                     this.subHead = dSubHead;
                                     return this;
@@ -86,46 +51,6 @@
                             };
 
                             return tableConfig;
-                        },
-                        toggleChecked : function (checkStatus, datas) {
-                            //  �쟾泥� �꽑�깮 泥댄겕 諛뺤뒪瑜� �겢由��뻽�쓣 寃쎌슦
-                            angular.forEach(datas, function (data) {
-                                if (angular.isDefined(data.defaultYn)) {
-                                    if (!data.defaultYn) {
-                                        data.checked = checkStatus;
-                                    }
-                                }
-                                else {
-                                    data.checked = checkStatus;
-                                }
-                            });
-                        },
-                        radioChecked : function (target, datas) {
-                            //  �빐�떦 row 媛� �씪�뵒�삤 踰꾪듉�씪 寃쎌슦
-                            angular.forEach(datas, function (data) {
-                                if (target.id == data.id) {
-                                    data.checked = true;
-                                }
-                                else {
-                                    data.checked = false;
-                                }
-                            });
-                        },
-                        rowChecked : function (tableConfig, target, datas) {
-                            //  媛� row �쓽 泥댄겕諛뺤뒪/�씪�뵒�삤 踰꾪듉�쓣 �겢由��뻽�쓣 寃쎌슦
-                            if (tableConfig[0].dType == "checkbox") {
-                                target.checked = !target.checked;
-
-                                for (var data in datas) {
-                                    if (!data.checked) {
-                                        this.hChecked = false;
-                                        break;
-                                    }
-                                }
-                            }
-                            else if (tableConfig[0].dType == "radio") {
-                                this.radioChecked(target, datas);
-                            }
                         },
                         orderByColumn : "",  // table order By column name
                         reverse : true,

--
Gitblit v1.8.0