From db658dfc2bd0a2919b9566c6e0683ebd44b72de8 Mon Sep 17 00:00:00 2001 From: jhjang <jhjang@maprex.co.kr> Date: 화, 08 2월 2022 18:52:49 +0900 Subject: [PATCH] - 이슈 호스팅/isp 생성시 id가 호스팅/isp 필드 id 입력되는 오류 수정 --- src/main/webapp/scripts/components/api/api.service.js | 26 +++++++++++++++++++++++++- 1 files changed, 25 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/scripts/components/api/api.service.js b/src/main/webapp/scripts/components/api/api.service.js index 9dd5537..d81b9cf 100644 --- a/src/main/webapp/scripts/components/api/api.service.js +++ b/src/main/webapp/scripts/components/api/api.service.js @@ -34,7 +34,31 @@ $log.debug("�씠�뒋 �쑀�삎 珥덇린媛� �닔�젙 寃곌낵 : ", response); return response; }); - } + }, + findApiOverlap : function (conditions) { + return $http.post("customFieldApiOverlap/find", conditions).then(function (response) { + $log.debug("�씠�뒋 �쑀�삎 以묐났媛� 議고쉶 寃곌낵 : ", response); + return response; + }); + }, + modifyApiOverlap : function (conditions) { + return $http.post("customFieldApiOverlap/modify", conditions).then(function (response) { + $log.debug("�씠�뒋 �쑀�삎 以묐났媛� �닔�젙 寃곌낵 : ", response); + return response; + }); + }, + findHistory : function (conditions) { + return $http.post("api/findHistory", conditions).then(function (response) { + $log.debug("API �씠�뒋 �벑濡� 湲곕줉 議고쉶 寃곌낵 : ", response); + return response; + }); + }, + saveCompleteIssueStatus : function (conditions) { + return $http.post("api/saveCompleteIssueStatus", conditions).then(function (response) { + $log.debug("API �씠�뒋 �벑濡� 湲곕줉 議고쉶 寃곌낵 : ", response); + return response; + }); + }, } } ]); -- Gitblit v1.8.0