From 916a3cbabe4e50062fce61ff6f2f5d46c05dfbd1 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 목, 17 3월 2022 17:47:45 +0900
Subject: [PATCH] - api로 이슈 추가 시 url/ip로 업체 찾는 코드 수정

---
 src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js |   20 +++++++++++++++++---
 1 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js b/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js
index 9310243..6603a78 100644
--- a/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js
+++ b/src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js
@@ -19,19 +19,33 @@
                 });
             },
 
-            addRelation : function (conditions) {
+            relationAdd : function (conditions) {
                 return $http.post("issueTableConfig/relationAdd", conditions).then(function (response) {
                     $log.debug("�뿰愿� �씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �벑濡� : ", response);
                     return response;
                 });
             },
 
-            addDown : function (conditions) {
+            relationDetail : function (conditions) {
+                return $http.post("issueTableConfig/relationDetail", conditions).then(function (response) {
+                    $log.debug("�뿰愿� �씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �긽�꽭 議고쉶 : ", response);
+                    return response;
+                });
+            },
+
+            downAdd : function (conditions) {
                 return $http.post("issueTableConfig/downAdd", conditions).then(function (response) {
                     $log.debug("�븯�쐞 �씠�뒋 紐⑸줉 �뀒�씠釉� �꽕�젙 �벑濡� : ", response);
                     return response;
                 });
-            }
+            },
+
+            downDetail : function (conditions) {
+                return $http.post("issueTableConfig/downDetail", conditions).then(function (response) {
+                    $log.debug("�븯�쐞 紐⑸줉 �뀒�씠釉� �꽕�젙 �긽�꽭 議고쉶 : ", response);
+                    return response;
+                });
+            },
         }
     }
     ])

--
Gitblit v1.8.0