From 96e48bf0ff25088cce03024ff943da363ad62640 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 수, 10 11월 2021 13:03:47 +0900
Subject: [PATCH] 부서 리스트 쿼리 수정

---
 src/main/webapp/custom_components/js-table/tableColumnGenerator.directive.js |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/main/webapp/custom_components/js-table/tableColumnGenerator.directive.js b/src/main/webapp/custom_components/js-table/tableColumnGenerator.directive.js
index a18aa93..6385a66 100644
--- a/src/main/webapp/custom_components/js-table/tableColumnGenerator.directive.js
+++ b/src/main/webapp/custom_components/js-table/tableColumnGenerator.directive.js
@@ -375,6 +375,24 @@
                                             }
                                             break;
 
+                                        case "ISPFIELD_MODIFY" :
+                                            if ($rootScope.checkMngPermission('USER_PERMISSION_MNG_CUSTOME_FIELD')) {
+                                                makeTag += "<span class='titlename cursor table-word-break-all' ng-click='event.modify(data.id)'>" + scope.data.name.replace(/</gi, '&lt;') + "</span>";
+                                            }
+                                            else {
+                                                makeTag += "<span class='titlename not-modify table-word-break-all'>" + scope.data.name + "</span>";
+                                            }
+                                            break;
+
+                                        case "HOSTINGFIELD_MODIFY" :
+                                            if ($rootScope.checkMngPermission('USER_PERMISSION_MNG_CUSTOME_FIELD')) {
+                                                makeTag += "<span class='titlename cursor table-word-break-all' ng-click='event.modify(data.id)'>" + scope.data.name.replace(/</gi, '&lt;') + "</span>";
+                                            }
+                                            else {
+                                                makeTag += "<span class='titlename not-modify table-word-break-all'>" + scope.data.name + "</span>";
+                                            }
+                                            break;
+
                                         case "ISSUE_CUSTOM_FIELD_VALUE_VIEW" :
                                             var values = [];
 

--
Gitblit v1.8.0