diff --git a/src/main/webapp/WEB-INF/jsp/web/custom/MsgCustomView.jsp b/src/main/webapp/WEB-INF/jsp/web/custom/MsgCustomView.jsp index 06f2e530..724cc51a 100644 --- a/src/main/webapp/WEB-INF/jsp/web/custom/MsgCustomView.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/custom/MsgCustomView.jsp @@ -129,7 +129,7 @@ function customSampleListAjax(pageNo){ //맞춤제작 내보관함 리스트 function myCustomListAjax(pageNo){ - if(!fn_cmndataValueChk("startDate", "endDate", 12)){ + if(!fn_G_cmndataValueChk("startDate", "endDate", 12)){ return; }; diff --git a/src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp b/src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp index 5cee730b..8eea500b 100644 --- a/src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp @@ -54,7 +54,7 @@ function listLoad(subpage , searchFlag ){ function linkPage(pageNo){ - if(!fn_cmndataValueChk("startDate", "endDate", 12)){ + if(!fn_G_cmndataValueChk("startDate", "endDate", 12)){ return; }; diff --git a/src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWList.jsp b/src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWList.jsp index c91b3074..1be55030 100644 --- a/src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWList.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/pay/PayUserSWList.jsp @@ -57,7 +57,7 @@ function setCalVal(val,targetObj){ // 요금사용내역 리스트 function payUserListAjax(pageNo){ - if(!fn_cmndataValueChk("startDate", "endDate", 12)){ + if(!fn_G_cmndataValueChk("startDate", "endDate", 12)){ return; }; diff --git a/src/main/webapp/publish/js/dateUtils.js b/src/main/webapp/publish/js/dateUtils.js index 79faae61..59c40e71 100644 --- a/src/main/webapp/publish/js/dateUtils.js +++ b/src/main/webapp/publish/js/dateUtils.js @@ -2,7 +2,7 @@ $(document).ready(function () { }); -function fn_cmndataValueChk(startId, endId, chkMonth) { +function fn_G_cmndataValueChk(startId, endId, chkMonth) { // 시작일자와 종료일자를 가져오기 var startDate = document.getElementById(startId).value; var endDate = document.getElementById(endId).value;