판매관리, 매출관리 업데이트

This commit is contained in:
Johngreen
2025-10-23 11:30:46 +09:00
parent f8ef97bb3c
commit de875a207b
7 changed files with 62 additions and 101 deletions

View File

@@ -139,10 +139,12 @@ function fnc_tabul_searchAjax(gridObj, searchURL, formId, hidePaging, checkValid
return;
}
var formData = $("#"+formId).serializeObject();
$.ajax({
url: searchURL,
type:"POST",
data:$("#"+formId).serializeObject(),
data:formData,
dataType:"json",
//async:false,
beforeSend:function(){
@@ -162,9 +164,8 @@ function fnc_tabul_searchAjax(gridObj, searchURL, formId, hidePaging, checkValid
//console.log(data);
},
error: function(jqxhr, status, error){
console.log(jqxhr);
console.log(status);
console.log(error);
alert("데이터 조회 중 오류가 발생했습니다.");
console.error(error);
}
});
}