diff --git a/src/main/webapp/WEB-INF/views/levy/levy/list.jsp b/src/main/webapp/WEB-INF/views/levy/levy/list.jsp index 016da57..69bb3a0 100644 --- a/src/main/webapp/WEB-INF/views/levy/levy/list.jsp +++ b/src/main/webapp/WEB-INF/views/levy/levy/list.jsp @@ -483,9 +483,10 @@ var crdnNo = masterRow.crdnNo; var impltTaskSeCd = masterRow.impltTaskSeCd; var impltTrprInfoId = detailRow.impltTrprInfoId; + var rgtr = masterRow.rgtr; //선택한 등록자 ID if (impltTaskSeCd != 5) { - alert("이행강제금 부과통지서는 부과인 경우에만 조회할 수 있습니다."); + alert("이행강제금 부과통지서 및 부과내역서는 부과인 경우에만 조회할 수 있습니다."); return; } @@ -500,7 +501,8 @@ + '?crdnYr=' + encodeURIComponent(crdnYr) + '&crdnNo=' + encodeURIComponent(crdnNo) + '&impltTaskSeCd=' + encodeURIComponent(impltTaskSeCd) - + '&impltTrprInfoId=' + encodeURIComponent(impltTrprInfoId); + + '&impltTrprInfoId=' + encodeURIComponent(impltTrprInfoId) + + '&rgtr=' + encodeURIComponent(rgtr); var options = "width=800,height=1000,scrollbars=yes,resizable=yes"; window.open(url, "openReport", options); diff --git a/src/main/webapp/ubi4/impltReport.jsp b/src/main/webapp/ubi4/impltReport.jsp index a3c5893..0bbf740 100644 --- a/src/main/webapp/ubi4/impltReport.jsp +++ b/src/main/webapp/ubi4/impltReport.jsp @@ -10,7 +10,8 @@ String crdnNo = request.getParameter("crdnNo"); // 선택한 단속번호 String impltTaskSeCd = request.getParameter("impltTaskSeCd"); // 진행단계 코드 String impltTrprInfoId = request.getParameter("impltTrprInfoId"); // 이행 대상자 정보 ID - String arg = "crdnYr#" + crdnYr + "#" + "crdnNo#" + crdnNo + "#" + "impltTaskSeCd#" + impltTaskSeCd + "#" + "impltTrprInfoId#" + impltTrprInfoId + "#"; // 유비리포트 파라미터 + String rgtr = request.getParameter("rgtr"); //로그인 id + String arg = "crdnYr#" + crdnYr + "#" + "crdnNo#" + crdnNo + "#" + "impltTaskSeCd#" + impltTaskSeCd + "#" + "impltTrprInfoId#" + impltTrprInfoId + "#" + "rgtr#" + rgtr + "#"; // 유비리포트 파라미터 String resId = nullToStr(request.getParameter("resId"), "UBIHTML"); %> diff --git a/src/main/webapp/ubi4/levyReport.jsp b/src/main/webapp/ubi4/levyReport.jsp index 0eb4a1f..80a35c3 100644 --- a/src/main/webapp/ubi4/levyReport.jsp +++ b/src/main/webapp/ubi4/levyReport.jsp @@ -10,7 +10,8 @@ String crdnNo = request.getParameter("crdnNo"); // 선택한 단속번호 String impltTaskSeCd = request.getParameter("impltTaskSeCd"); // 진행단계 코드 String impltTrprInfoId = request.getParameter("impltTrprInfoId"); // 이행 대상자 정보 ID - String arg = "crdnYr#" + crdnYr + "#" + "crdnNo#" + crdnNo + "#" + "impltTaskSeCd#" + impltTaskSeCd + "#" + "impltTrprInfoId#" + impltTrprInfoId + "#"; // 유비리포트 파라미터 + String rgtr = request.getParameter("rgtr"); //로그인 id + String arg = "crdnYr#" + crdnYr + "#" + "crdnNo#" + crdnNo + "#" + "impltTaskSeCd#" + impltTaskSeCd + "#" + "impltTrprInfoId#" + impltTrprInfoId + "#" + "rgtr#" + rgtr + "#"; // 유비리포트 파라미터 String resId = nullToStr(request.getParameter("resId"), "UBIHTML"); %> diff --git a/src/main/webapp/ubi4/work/impltReport.jrf b/src/main/webapp/ubi4/work/impltReport.jrf index 10c5937..32f798b 100644 Binary files a/src/main/webapp/ubi4/work/impltReport.jrf and b/src/main/webapp/ubi4/work/impltReport.jrf differ diff --git a/src/main/webapp/ubi4/work/levyReport.jrf b/src/main/webapp/ubi4/work/levyReport.jrf index 4500558..e1f8221 100644 Binary files a/src/main/webapp/ubi4/work/levyReport.jrf and b/src/main/webapp/ubi4/work/levyReport.jrf differ