결과 엑셀 확장자를 .xls → .xlsx 로 변경

파일 내용은 openpyxl 로 작성된 xlsx 포맷이지만
확장자만 .xls 였던 것을 실제 포맷과 맞춰 .xlsx 로 정정.

- 서버 다운로드 파일명 확장자 변경
- 프론트 fallback 파일명 변경

xls 파일을 "쓰는" 코드(xlwt 등)는 원래 없었음.
xlrd 는 입력 파일(.xls) 을 "읽는" 용도라 유지.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 00:22:16 +09:00
parent da3ff199d8
commit 52ce51aac7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -438,7 +438,7 @@ document.addEventListener('DOMContentLoaded', () => {
});
if (response.ok) {
let downloadFilename = '낱개상품출고.xls';
let downloadFilename = '낱개상품출고.xlsx';
const disposition = response.headers.get('Content-Disposition');
if (disposition && disposition.indexOf('filename*=') !== -1) {
const matches = disposition.split("filename*=UTF-8''");