From dea4bb128425e06684bf95e8e97613a20cf3bcfa Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 24 1월 2022 18:10:31 +0900 Subject: [PATCH] 이슈 테이블 표시 설정 10 이상 정렬 오류 해결 --- src/main/webapp/scripts/components/issue/issue.service.js | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/scripts/components/issue/issue.service.js b/src/main/webapp/scripts/components/issue/issue.service.js index d606b2b..d9f9086 100644 --- a/src/main/webapp/scripts/components/issue/issue.service.js +++ b/src/main/webapp/scripts/components/issue/issue.service.js @@ -39,6 +39,12 @@ return response; }); }, + findReadyDepartments : function (conditions) { + return $http.post("issue/findReadyDepartments", conditions).then(function (response) { + $log.debug("�썙�겕�뵆濡쒖슦�쓽 �깮�꽦 �긽�깭�쓽 �떞�떦遺��꽌 紐⑸줉 �뜲�씠�꽣 : ", response); + return response; + }); + }, add : function (conditions) { conditions.url = "issue/add"; return $upload.upload(conditions).progress(function (evt) { @@ -50,9 +56,19 @@ return response; }); }, - relAdd : function (conditions) { conditions.url = "issue/relIssueAdd"; + return $upload.upload(conditions).progress(function (evt) { + // �뙆�씪 �뾽濡쒕뱶 吏꾪뻾�쑉�쓣 �몴�떆�빐以��떎. + fileUploadProgress(evt); + + }).then(function (response) { + $log.debug("�씠�뒋 �깮�꽦 寃곌낵 : ", response); + return response; + }); + }, + downAdd : function (conditions) { + conditions.url = "issue/downIssueAdd"; return $upload.upload(conditions).progress(function (evt) { // �뙆�씪 �뾽濡쒕뱶 吏꾪뻾�쑉�쓣 �몴�떆�빐以��떎. fileUploadProgress(evt); @@ -92,6 +108,18 @@ return response; }); }, + removeAllIssues : function (conditions) { + return $http.post("issue/removeAll", conditions).then(function (response) { + $log.debug("�븯�쐞�씠�뒋 �궘�젣 寃곌낵 : ", response); + return response; + }); + }, + /*removeDownIssues : function (conditions) { + return $http.post("issue/removeDown", conditions).then(function (response) { + $log.debug("�븯�쐞�씠�뒋 �궘�젣 寃곌낵 : ", response); + return response; + }); + },*/ importExcel : function (conditions) { conditions.url = "issue/importExcel"; return $upload.upload(conditions).then(function (response) { @@ -116,6 +144,12 @@ $log.debug("�씠�뒋 �씠硫붿씪 諛쒖넚 寃곌낵 : ", response); return response; }); + }, + sendCommonEmail : function (conditions) { + return $http.post("issue/sendCommonEmail", conditions).then(function (response) { + $log.debug("�씠�뒋 �씠硫붿씪 諛쒖넚 寃곌낵 : ", response); + return response; + }); } } } -- Gitblit v1.8.0