datautils 함수명 변경

This commit is contained in:
hylee 2024-07-15 10:45:44 +09:00
parent 140056c15a
commit 8ce7ee25a3
4 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ function customSampleListAjax(pageNo){
//맞춤제작 내보관함 리스트
function myCustomListAjax(pageNo){
if(!fn_cmndataValueChk("startDate", "endDate", 12)){
if(!fn_G_cmndataValueChk("startDate", "endDate", 12)){
return;
};

View File

@ -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;
};

View File

@ -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;
};

View File

@ -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;