엑셀 내보내기에서 라인 번호 제거

- 구매 업무에 불필요한 라인 번호 컬럼 제거
- 카테고리, 자재 설명, 사이즈, 필요 수량, 구매 단위만 표시
- 총 5개 컬럼으로 더욱 간결한 엑셀 파일 생성
This commit is contained in:
Hyungi Ahn
2025-07-23 10:47:39 +09:00
parent ffa6e58a7c
commit 0d31d8b3fc

View File

@@ -105,8 +105,7 @@ const formatMaterialForExcel = (material, includeComparison = false) => {
const base = {
'카테고리': category,
'자재 설명': material.original_description || material.description || '-',
'사이즈': material.size_spec || '-',
'라인 번호': material.line_number || '-'
'사이즈': material.size_spec || '-'
};
// 구매 수량 정보만 추가 (기존 수량/단위 정보 제거)