From 6d654b1ba2c19e0bf1745b636908e3b00a0f02c7 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 9 Jul 2025 12:19:05 +0000 Subject: (대표님) 20250709 변경사항 (약 18시 30분까지) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/techsales-rfq/service.ts | 2 +- lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx | 6 +++--- .../table/detail-table/vendor-communication-drawer.tsx | 2 +- lib/techsales-rfq/table/rfq-table-column.tsx | 4 ++-- lib/techsales-rfq/table/tech-sales-quotation-attachments-sheet.tsx | 2 +- lib/techsales-rfq/table/tech-sales-rfq-attachments-sheet.tsx | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) (limited to 'lib/techsales-rfq') diff --git a/lib/techsales-rfq/service.ts b/lib/techsales-rfq/service.ts index 14d7a45e..9689e855 100644 --- a/lib/techsales-rfq/service.ts +++ b/lib/techsales-rfq/service.ts @@ -634,7 +634,7 @@ export async function sendTechSalesRfqToVendors(input: { projectCode: rfq.biddingProject?.pspid || '', projectName: rfq.biddingProject?.projNm || '', description: rfq.remark || '', - dueDate: rfq.dueDate ? formatDate(rfq.dueDate) : 'N/A', + dueDate: rfq.dueDate ? formatDate(rfq.dueDate, "KR") : 'N/A', materialCode: rfq.materialCode || '', type: rfq.rfqType || 'SHIP', }, diff --git a/lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx b/lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx index 0195b10c..ce701e13 100644 --- a/lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx +++ b/lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx @@ -137,7 +137,7 @@ function QuotationCard({

유효 기한

- {data.validUntil ? formatDate(data.validUntil) : "미설정"} + {data.validUntil ? formatDate(data.validUntil, "KR") : "미설정"}

@@ -187,8 +187,8 @@ function QuotationCard({ {isCurrent - ? `수정: ${data.updatedAt ? formatDate(data.updatedAt) : "N/A"}` - : `변경: ${revisedAt ? formatDate(revisedAt) : "N/A"}` + ? `수정: ${data.updatedAt ? formatDate(data.updatedAt, "KR") : "N/A"}` + : `변경: ${revisedAt ? formatDate(revisedAt, "KR") : "N/A"}` } diff --git a/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx b/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx index 4172ccd7..0312451d 100644 --- a/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx +++ b/lib/techsales-rfq/table/detail-table/vendor-communication-drawer.tsx @@ -351,7 +351,7 @@ export function VendorCommunicationDrawer({ {selectedAttachment.fileName} - {formatFileSize(selectedAttachment.fileSize)} • {formatDateTime(selectedAttachment.uploadedAt)} + {formatFileSize(selectedAttachment.fileSize)} • {formatDateTime(selectedAttachment.uploadedAt, "KR")} diff --git a/lib/techsales-rfq/table/rfq-table-column.tsx b/lib/techsales-rfq/table/rfq-table-column.tsx index 3009e036..89054d0e 100644 --- a/lib/techsales-rfq/table/rfq-table-column.tsx +++ b/lib/techsales-rfq/table/rfq-table-column.tsx @@ -234,7 +234,7 @@ export function getColumns({ ), cell: ({ cell }) => { const value = cell.getValue(); - return value ? formatDateTime(value as Date) : ""; + return value ? formatDateTime(value as Date, "KR") : ""; }, meta: { excelHeader: "등록일" @@ -249,7 +249,7 @@ export function getColumns({ ), cell: ({ cell }) => { const value = cell.getValue(); - return value ? formatDateTime(value as Date) : ""; + return value ? formatDateTime(value as Date, "KR") : ""; }, meta: { excelHeader: "수정일" diff --git a/lib/techsales-rfq/table/tech-sales-quotation-attachments-sheet.tsx b/lib/techsales-rfq/table/tech-sales-quotation-attachments-sheet.tsx index 21c61773..6d6bde5a 100644 --- a/lib/techsales-rfq/table/tech-sales-quotation-attachments-sheet.tsx +++ b/lib/techsales-rfq/table/tech-sales-quotation-attachments-sheet.tsx @@ -190,7 +190,7 @@ export function TechSalesQuotationAttachmentsSheet({

- {formatDate(attachment.createdAt)} + {formatDate(attachment.createdAt, "KR")}

{attachment.description && (

diff --git a/lib/techsales-rfq/table/tech-sales-rfq-attachments-sheet.tsx b/lib/techsales-rfq/table/tech-sales-rfq-attachments-sheet.tsx index fa9be9e3..0593206a 100644 --- a/lib/techsales-rfq/table/tech-sales-rfq-attachments-sheet.tsx +++ b/lib/techsales-rfq/table/tech-sales-rfq-attachments-sheet.tsx @@ -379,7 +379,7 @@ export function TechSalesRfqAttachmentsSheet({ {existingFields.map((field, index) => { const typeLabel = attachmentConfig.fileTypeLabel const sizeText = field.fileSize ? prettyBytes(field.fileSize) : "알 수 없음" - const dateText = field.createdAt ? formatDate(field.createdAt) : "" + const dateText = field.createdAt ? formatDate(field.createdAt, "KR") : "" return (

-- cgit v1.2.3