From 60382940bac4ac8309be64be16f4774b6820df22 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Wed, 19 Nov 2025 17:44:48 +0900 Subject: (김준회) PR 데이터 수신시 Spec 정보도 넣어주도록 수정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/rfq-last/shared/rfq-items-dialog.tsx | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) (limited to 'lib/rfq-last/shared') diff --git a/lib/rfq-last/shared/rfq-items-dialog.tsx b/lib/rfq-last/shared/rfq-items-dialog.tsx index e4f71e79..eed3d154 100644 --- a/lib/rfq-last/shared/rfq-items-dialog.tsx +++ b/lib/rfq-last/shared/rfq-items-dialog.tsx @@ -18,10 +18,15 @@ import { TableHeader, TableRow, } from "@/components/ui/table" -import { Badge } from "@/components/ui/badge" import { Button } from "@/components/ui/button" import { Skeleton } from "@/components/ui/skeleton" import { Separator } from "@/components/ui/separator" +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip" import { toast } from "sonner" import { RfqsLastView, VendorQuotationView } from "@/db/schema" import { getRfqItemsAction } from "../service" @@ -267,7 +272,7 @@ export function RfqItemsDialog({ 아이템 자재코드 자재명 - 사양 + Specification 수량 수량단위 중량 @@ -309,7 +314,7 @@ export function RfqItemsDialog({ 아이템 자재코드 자재명 - 사양 + Specification 수량 수량단위 중량 @@ -363,9 +368,24 @@ export function RfqItemsDialog({ - - {item.specification?.trim() ? item.specification : "-"} - + {item.specification?.trim() ? ( + + + +
+ {item.specification} +
+
+ +

+ {item.specification} +

+
+
+
+ ) : ( + - + )}
-- cgit v1.2.3