From 198cbcf93b20d3849705dcdbba439326d82b0cae Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 8 Dec 2025 03:24:15 +0000 Subject: (최겸) 기술영업 rfq 프로젝트 숨기기 기능 추가 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vendor-response/detail/project-info-tab.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'lib/techsales-rfq/vendor-response/detail/project-info-tab.tsx') diff --git a/lib/techsales-rfq/vendor-response/detail/project-info-tab.tsx b/lib/techsales-rfq/vendor-response/detail/project-info-tab.tsx index 8a45f529..31e87330 100644 --- a/lib/techsales-rfq/vendor-response/detail/project-info-tab.tsx +++ b/lib/techsales-rfq/vendor-response/detail/project-info-tab.tsx @@ -16,6 +16,7 @@ interface ProjectInfoTabProps { dueDate: Date | null status: string | null remark: string | null + hideProjectInfoForVendors?: boolean biddingProject?: { id: number pspid: string | null @@ -110,7 +111,9 @@ export function ProjectInfoTab({ quotation }: ProjectInfoTabProps) { 프로젝트 기본 정보 - {rfq.biddingProject.pspid || "N/A"} + + {rfq.hideProjectInfoForVendors ? "비공개" : (rfq.biddingProject.pspid || "N/A")} + 연결된 프로젝트의 기본 정보 @@ -120,11 +123,15 @@ export function ProjectInfoTab({ quotation }: ProjectInfoTabProps) {
프로젝트 ID
-
{rfq.biddingProject.pspid || "N/A"}
+
+ {rfq.hideProjectInfoForVendors ? "비공개" : (rfq.biddingProject.pspid || "N/A")} +
프로젝트명
-
{rfq.biddingProject.projNm || "N/A"}
+
+ {rfq.hideProjectInfoForVendors ? "비공개" : (rfq.biddingProject.projNm || "N/A")} +
프로젝트 섹터
-- cgit v1.2.3