From a227dd7df7f84a5cfb7218042a6f844991dcfb96 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 수, 09 2월 2022 14:53:41 +0900 Subject: [PATCH] - isp, 호스팅 엑셀 import 기능 추가 --- src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js b/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js index 886b2ab..175cd43 100644 --- a/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js +++ b/src/main/webapp/scripts/app/hostingField/hostingFieldList.controller.js @@ -19,7 +19,8 @@ initSearch : initSearch, //寃��깋 議곌굔 珥덇린�솕 add : add, //�샇�뒪�똿 �깮�꽦 removes : removes, //�샇�뒪�똿 �궘�젣 - makeSearchConditions : makeSearchConditions //�뿊�� �떎�슫濡쒕뱶 + makeSearchConditions : makeSearchConditions, //�뿊�� �떎�슫濡쒕뱶 + importExcel : importExcel, // �뿊�� import 湲곕뒫 �뙘�뾽 �샇異� }; // 蹂��닔 @@ -46,6 +47,11 @@ // �샇�뒪�똿 愿�由� 由ъ뒪�듃 遺덈윭�삤湲� $scope.$on("getPageList", function () { + $scope.fn.getPageList(0); + }); + + // �샇�뒪�똿 紐⑸줉 �뜲�씠�꽣 媛깆떊 + $scope.$on("getHostingFieldList", function () { $scope.fn.getPageList(0); }); @@ -271,6 +277,16 @@ }); } + // �뿊�� import �뙘�뾽 �샇異� + function importExcel() { + $uibModal.open({ + templateUrl : 'views/hostingField/hostingFieldExcelImport.html', + size : "lg", + controller : 'hostingFieldImportExcelController', + backdrop : 'static' + }); + } + function makeSearchConditions() { var conditions = { name: $scope.vm.search.name -- Gitblit v1.8.0