From 6092c296f431660b09e927004b85218353df1daa Mon Sep 17 00:00:00 2001 From: jjh Date: Wed, 25 Sep 2024 16:56:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=84=EB=8C=80=EA=B8=B0=EC=97=85=20ID=20?= =?UTF-8?q?=EA=B2=80=EC=83=89=20=EC=A1=B0=EA=B1=B4=20=EC=B6=94=EA=B0=80.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/fims/rent/rent02010-main.jsp | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/fims/rent/rent02010-main.jsp b/src/main/webapp/WEB-INF/jsp/fims/rent/rent02010-main.jsp index d229dc5e..6fe0826f 100644 --- a/src/main/webapp/WEB-INF/jsp/fims/rent/rent02010-main.jsp +++ b/src/main/webapp/WEB-INF/jsp/fims/rent/rent02010-main.jsp @@ -44,11 +44,11 @@
- - - - + +
@@ -304,7 +304,7 @@ // URL 설정 $P.setUrl = (prefixUrl) => { $P.ctrl.urls.load = wctx.url(prefixUrl + "/010/list.do"); // 검색 - $P.ctrl.urls.remove = wctx.url(prefixUrl + "/010/remove.do") // 삭제 + $P.ctrl.urls.remove = wctx.url(prefixUrl + "/010/removeCtrt.do") // 삭제 $P.ctrl.urls.getInfo = wctx.url(prefixUrl + "/020/info.do"); // 상세 정보 } @@ -330,7 +330,9 @@ AppSupport.setDialogZindex(); } - , onClose: () => { } + , onClose: () => { + if (resp.saved) { $P.ctrl.reload({ all: true }); } + } }); } }); @@ -484,11 +486,11 @@ $P.ctrl.query.trgtSttsNm = tabName; // 임대기업번호가 전체라면.. - if ($P.ctrl.query.schEntNo == "" ) { + if ($P.ctrl.query.entId == "" ) { // schEntNo 의 option을 전체를 배열로 담는다. - let arrEntNo = $.map($P.$findn("schEntNo").find("option"), function(e) { return e.value; }); + let arrEntId = $.map($P.$findn("entId").find("option"), function(e) { return e.value; }); - if (arrEntNo.length == 1) { + if (arrEntId.length == 1) { dialog.alert({ content: "등록되어 있는 임대기업 정보가 없습니다." + "
" + "'임대기업관리' 메뉴에서 임대기업 정보를 먼저 등록하시기 바랍니다." @@ -498,8 +500,8 @@ return; } - // 빈 값(전체)을 제외하고 "," 로 구분하여 schEntNos 에 담는다. - $P.ctrl.query.schEntNos = arrEntNo.filter((element) => element !== "").join(','); + // 빈 값(전체)을 제외하고 "," 로 구분하여 entIds 에 담는다. + $P.ctrl.query.entIds = arrEntId.filter((element) => element !== "").join(','); } $P.ctrl.load(1);