ApiInterface 파일 업로드 시 중복체크 기능 추가

This commit is contained in:
eactive
2025-11-25 15:54:44 +09:00
parent 48fe41794b
commit 7bcb641c1c
4 changed files with 174 additions and 62 deletions
@@ -1239,15 +1239,17 @@
});
});
$("#btn_excel_export").click(function () {
const url = url_excel + '?cmd=DETAIL_EXPORT_TO_EXCEL';
const params = new URLSearchParams();
params.append('eaiSvcName', getFullSvcName());
downloadFiles(url, params);
return false;
});
// 25.11.25 엑셀다운로드 사용안함.
// $("#btn_excel_export").click(function () {
// const url = url_excel + '?cmd=DETAIL_EXPORT_TO_EXCEL';
// const params = new URLSearchParams();
// params.append('eaiSvcName', getFullSvcName());
// downloadFiles(url, params);
// return false;
// });
// JSON 다운로드
$("#btn_json_export").click(function () {
const uri = url + '?cmd=DETAIL_EXPORT_TO_JSON';
const params = new URLSearchParams();