diff options
Diffstat (limited to 'lib/welding/table/exporft-ocr-data.ts')
| -rw-r--r-- | lib/welding/table/exporft-ocr-data.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/welding/table/exporft-ocr-data.ts b/lib/welding/table/exporft-ocr-data.ts index 76856808..729b1beb 100644 --- a/lib/welding/table/exporft-ocr-data.ts +++ b/lib/welding/table/exporft-ocr-data.ts @@ -19,6 +19,8 @@ export async function exportOcrDataToExcel( // 컬럼 정의 (OCR 데이터에 맞게 설정) const columns = [ + { key: "fileName", header: "file Name", width: 20 }, + { key: "inspectionDate", header: "inspection Date", width: 20 }, { key: "reportNo", header: "Report No", width: 15 }, { key: "no", header: "No", width: 10 }, { key: "identificationNo", header: "Identification No", width: 20 }, @@ -52,6 +54,8 @@ export async function exportOcrDataToExcel( reportNo: row.reportNo || "", no: row.no || "", identificationNo: row.identificationNo || "", + inspectionDate: row.inspectionDate ? new Date(row.inspectionDate).toLocaleDateString() : "", + fileName: row.fileName || "", tagNo: row.tagNo || "", jointNo: row.jointNo || "", jointType: row.jointType || "", |
