From 14f61e24947fb92dd71ec0a7196a6e815f8e66da Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 21 Jul 2025 07:54:26 +0000 Subject: (최겸)기술영업 RFQ 담당자 초대, 요구사항 반영 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../table/detail-table/quotation-history-dialog.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx') 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 ce701e13..0f5158d9 100644 --- a/lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx +++ b/lib/techsales-rfq/table/detail-table/quotation-history-dialog.tsx @@ -13,7 +13,7 @@ import { Badge } from "@/components/ui/badge" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" import { Skeleton } from "@/components/ui/skeleton" -import { Clock, User, FileText, AlertCircle, Paperclip } from "lucide-react" +import { Clock, User, AlertCircle, Paperclip } from "lucide-react" import { formatDate } from "@/lib/utils" import { toast } from "sonner" @@ -91,7 +91,6 @@ function QuotationCard({ data, version, isCurrent = false, - changeReason, revisedBy, revisedAt, attachments @@ -99,7 +98,6 @@ function QuotationCard({ data: QuotationSnapshot | QuotationHistoryData["current"] version: number isCurrent?: boolean - changeReason?: string | null revisedBy?: string | null revisedAt?: Date attachments?: QuotationAttachment[] @@ -137,7 +135,7 @@ function QuotationCard({

유효 기한

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

@@ -187,8 +185,8 @@ function QuotationCard({ {isCurrent - ? `수정: ${data.updatedAt ? formatDate(data.updatedAt, "KR") : "N/A"}` - : `변경: ${revisedAt ? formatDate(revisedAt, "KR") : "N/A"}` + ? `수정: ${data.updatedAt ? formatDate(data.updatedAt) : "N/A"}` + : `변경: ${revisedAt ? formatDate(revisedAt) : "N/A"}` } -- cgit v1.2.3