From 44794a8628997c0d979adb5bd6711cd848b3e397 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 9 Jul 2025 06:27:10 +0000 Subject: (최겸) 기술영업 판교 미팅 이전 rfq-tech 삭제 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/rfqs-tech/tbe-table/vendor-contact-dialog.tsx | 71 ----------------------- 1 file changed, 71 deletions(-) delete mode 100644 lib/rfqs-tech/tbe-table/vendor-contact-dialog.tsx (limited to 'lib/rfqs-tech/tbe-table/vendor-contact-dialog.tsx') diff --git a/lib/rfqs-tech/tbe-table/vendor-contact-dialog.tsx b/lib/rfqs-tech/tbe-table/vendor-contact-dialog.tsx deleted file mode 100644 index 3619fe77..00000000 --- a/lib/rfqs-tech/tbe-table/vendor-contact-dialog.tsx +++ /dev/null @@ -1,71 +0,0 @@ -"use client" - -import * as React from "react" -import { - Dialog, - DialogContent, - DialogHeader, - DialogTitle, -} from "@/components/ui/dialog" -import { VendorContactsTable } from "./vendor-contact/vendor-contact-table" -import { Badge } from "@/components/ui/badge" -import { VendorWithTbeFields } from "@/config/vendorTbeColumnsConfig" - -interface VendorContactsDialogProps { - isOpen: boolean - onOpenChange: (open: boolean) => void - vendorId: number | null - vendor: VendorWithTbeFields | null -} - -export function VendorContactsDialog({ - isOpen, - onOpenChange, - vendorId, - vendor, -}: VendorContactsDialogProps) { - return ( - - - -
- 협력업체 연락처 - {vendor && ( -
-
- {vendor.vendorName} - {vendor.vendorCode && ( - ({vendor.vendorCode}) - )} -
-
- {vendor.vendorStatus && ( - - {vendor.vendorStatus} - - )} - {vendor.rfqVendorStatus && ( - - {vendor.rfqVendorStatus} - - )} -
-
- )} -
-
- {vendorId && ( -
- -
- )} -
-
- ) -} \ No newline at end of file -- cgit v1.2.3