From aea386663b07577100131df016ce883b7b5baaf6 Mon Sep 17 00:00:00 2001 From: jjh Date: Thu, 12 Oct 2023 17:02:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9A=B0=ED=8E=B8=ED=86=B5=ED=95=A9=20?= =?UTF-8?q?=EB=B0=9C=EC=86=A1=20=EC=88=98=EC=A0=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/fims/sndb/sndb01080-info.jsp | 5 +++-- ...putEPostDialog.html => inputDateDialog.html} | 17 +++++++++++++---- 2 files changed, 16 insertions(+), 6 deletions(-) rename src/main/webapp/resources/html/{inputEPostDialog.html => inputDateDialog.html} (86%) diff --git a/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp b/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp index 7dfdd016..e6624683 100644 --- a/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp +++ b/src/main/webapp/WEB-INF/jsp/fims/sndb/sndb01080-info.jsp @@ -264,6 +264,7 @@ info.sndngId = ${pageName}Control.dataset.getValue("SNDNG_ID"); info.sndngYmd = obj.sndngYmd; info.dudtYmd = obj.dudtYmd; + info.divKb = obj.divKb; ajax.post({ url : wctx.url("/" + taskSeCd + ${pageName}PrefixUrl + "/080/createSndngLink.do") @@ -394,11 +395,11 @@ let popupY= (window.screen.height / 2) - (popupHeight / 2); window.open( - wctx.url("/resources/html/inputEPostDialog.html" + wctx.url("/resources/html/inputDateDialog.html" + "?callbackFuncName=" + callbackFuncName + "&SNDNG_YMD=" + ${pageName}Control.dataset.getValue("SNDNG_YMD") + "&DUDT_YMD=" + ${pageName}Control.dataset.getValue("DUDT_YMD")) - ,"inputEPostDialog" + ,"inputEPostDateDialog" ,'status=no, height=' + popupHeight + ', width=' + popupWidth + ', left='+ popupX + ', top='+ popupY ); } diff --git a/src/main/webapp/resources/html/inputEPostDialog.html b/src/main/webapp/resources/html/inputDateDialog.html similarity index 86% rename from src/main/webapp/resources/html/inputEPostDialog.html rename to src/main/webapp/resources/html/inputDateDialog.html index f956108d..d5dd37a9 100644 --- a/src/main/webapp/resources/html/inputEPostDialog.html +++ b/src/main/webapp/resources/html/inputDateDialog.html @@ -2,8 +2,6 @@ - 일자선택 - @@ -25,11 +23,13 @@ + + 일자선택
-
+
@@ -87,6 +95,7 @@ inputDate.sndngYmd = $("#sndngYmd").val(); inputDate.dudtYmd = $("#dudtYmd").val(); + inputDate.divKb = $("input[name='divKb']:checked").val(); window.opener[callbackFuncName](inputDate); window.close(); @@ -98,7 +107,7 @@ $("#sndngYmd").datepicker("setDate", sndngYmd); $("#dudtYmd").datepicker("setDate", dudtYmd); - }); + })