diff options
152 files changed, 398 insertions, 1723 deletions
diff --git a/app/[lng]/engineering/(engineering)/form-list/page.tsx b/app/[lng]/engineering/(engineering)/form-list/page.tsx index a6cf7d9e..a2c6fbb9 100644 --- a/app/[lng]/engineering/(engineering)/form-list/page.tsx +++ b/app/[lng]/engineering/(engineering)/form-list/page.tsx @@ -37,14 +37,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 레지스터 목록 from S-EDP </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 데이터 입력을 위한 레지스터 목록 리스트입니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/engineering/(engineering)/items/page.tsx b/app/[lng]/engineering/(engineering)/items/page.tsx index 0c44bf0a..f8d9a5b1 100644 --- a/app/[lng]/engineering/(engineering)/items/page.tsx +++ b/app/[lng]/engineering/(engineering)/items/page.tsx @@ -35,11 +35,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 패키지 정보 + 패키지 넘버 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신된 패키지 정보이며 PR 전 입찰, 견적에 사용되며 벤더 데이터, 문서와 연결됩니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/engineering/(engineering)/projects/page.tsx b/app/[lng]/engineering/(engineering)/projects/page.tsx index 0320f259..199b175b 100644 --- a/app/[lng]/engineering/(engineering)/projects/page.tsx +++ b/app/[lng]/engineering/(engineering)/projects/page.tsx @@ -35,16 +35,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Project List from S-EDP + 프로젝트 리스트 from S-EDP </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신하는 프로젝트 리스트입니다. 향후 MDG로 전환됩니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/cbe/page.tsx b/app/[lng]/engineering/(engineering)/rfq-tech/[id]/cbe/page.tsx deleted file mode 100644 index 84379caf..00000000 --- a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/cbe/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { searchParamsCBECache } from "@/lib/rfqs-tech/validations" -import { getCBE } from "@/lib/rfqs-tech/service" -import { CbeTable } from "@/lib/rfqs-tech/cbe-table/cbe-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqCBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsCBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getCBE({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Commercial Bid Evaluation - </h3> - <p className="text-sm text-muted-foreground"> - 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br />"발행하기" 버튼을 통해 CBE를 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <CbeTable promises={promises} rfqId={idAsNumber} /> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/layout.tsx b/app/[lng]/engineering/(engineering)/rfq-tech/[id]/layout.tsx deleted file mode 100644 index 0bb62fe0..00000000 --- a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/layout.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import { Metadata } from "next" -import Link from "next/link" -import { Separator } from "@/components/ui/separator" -import { SidebarNav } from "@/components/layout/sidebar-nav" -import { RfqViewWithItems } from "@/db/schema/rfq" -import { findRfqById } from "@/lib/rfqs-tech/service" -import { formatDate } from "@/lib/utils" -import { Button } from "@/components/ui/button" -import { ArrowLeft } from "lucide-react" - -export const metadata: Metadata = { - title: "Vendor Detail", -} - -export default async function RfqLayout({ - children, - params, -}: { - children: React.ReactNode - params: { lng: string, id: string } -}) { - - // 1) URL 파라미터에서 id 추출, Number로 변환 - const resolvedParams = await params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - // 2) DB에서 해당 협력업체 정보 조회 - const rfq: RfqViewWithItems | null = await findRfqById(idAsNumber) - - // 3) 사이드바 메뉴 - const sidebarNavItems = [ - { - title: "Matched Vendors", - href: `/${lng}/evcp/rfq-tech/${id}`, - }, - { - title: "TBE", - href: `/${lng}/evcp/rfq-tech/${id}/tbe`, - }, - { - title: "CBE", - href: `/${lng}/evcp/rfq-tech/${id}/cbe`, - }, - - ] - - return ( - <> - <div className="container py-6"> - <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> - <div className="hidden space-y-6 p-10 pb-16 md:block"> - <div className="flex items-center justify-end mb-4"> - <Link href={`/${lng}/evcp/rfq`} passHref> - <Button variant="ghost" className="flex items-center text-primary hover:text-primary/80 transition-colors p-0 h-auto"> - <ArrowLeft className="mr-1 h-4 w-4" /> - <span>RFQ 목록으로 돌아가기</span> - </Button> - </Link> - </div> - <div className="space-y-0.5"> - {/* 4) 협력업체 정보가 있으면 코드 + 이름 + "상세 정보" 표기 */} - <h2 className="text-2xl font-bold tracking-tight"> - {rfq - ? `${rfq.projectCode ?? ""} ${rfq.rfqCode ?? ""} 관리` - : "Loading RFQ..."} - </h2> - - <p className="text-muted-foreground"> - {rfq - ? `${rfq.description ?? ""} ${rfq.lines.map(line => line.itemCode).join(", ")}` - : ""} - </p> - <h3>Due Date:{rfq && rfq?.dueDate && <strong>{formatDate(rfq?.dueDate)}</strong>}</h3> - </div> - <Separator className="my-6" /> - <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> - <aside className="lg:w-64 flex-shrink-0"> - <SidebarNav items={sidebarNavItems} /> - </aside> - <div className="lg:w-[calc(100%-16rem)] overflow-auto">{children}</div> - </div> - </div> - </section> - </div> - </> - ) -}
\ No newline at end of file diff --git a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/page.tsx b/app/[lng]/engineering/(engineering)/rfq-tech/[id]/page.tsx deleted file mode 100644 index 007270a1..00000000 --- a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getMatchedVendors } from "@/lib/rfqs-tech/service" -import { searchParamsMatchedVCache } from "@/lib/rfqs-tech/validations" -import { MatchedVendorsTable } from "@/lib/rfqs-tech/vendor-table/vendors-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsMatchedVCache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getMatchedVendors({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Vendors - </h3> - <p className="text-sm text-muted-foreground"> - 등록된 협력업체 중에서 이 RFQ 아이템에 매칭되는 업체를 보여줍니다. <br/>"발행하기" 버튼을 통해 RFQ를 전송하면 첨부파일과 함께 RFQ 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <MatchedVendorsTable promises={promises} rfqId={idAsNumber}/> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/tbe/page.tsx b/app/[lng]/engineering/(engineering)/rfq-tech/[id]/tbe/page.tsx deleted file mode 100644 index 4b226cdc..00000000 --- a/app/[lng]/engineering/(engineering)/rfq-tech/[id]/tbe/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getTBE } from "@/lib/rfqs-tech/service" -import { searchParamsTBECache } from "@/lib/rfqs-tech/validations" -import { TbeTable } from "@/lib/rfqs-tech/tbe-table/tbe-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqTBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsTBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getTBE({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Technical Bid Evaluation - </h3> - <p className="text-sm text-muted-foreground"> - 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/>"발행하기" 버튼을 통해 TBE를 전송하면 첨부파일과 함께 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <TbeTable promises={promises} rfqId={idAsNumber}/> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/engineering/(engineering)/rfq-tech/page.tsx b/app/[lng]/engineering/(engineering)/rfq-tech/page.tsx deleted file mode 100644 index f35b3632..00000000 --- a/app/[lng]/engineering/(engineering)/rfq-tech/page.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import * as React from "react" -import { type SearchParams } from "@/types/table" - -import { getValidFilters } from "@/lib/data-table" -import { Skeleton } from "@/components/ui/skeleton" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" -import { Shell } from "@/components/shell" - -import { searchParamsCache } from "@/lib/rfqs-tech/validations" -import { getRfqs, getRfqStatusCounts } from "@/lib/rfqs-tech/service" -import { RfqsTable } from "@/lib/rfqs-tech/table/rfqs-table" -import { getAllOffshoreItems } from "@/lib/items-tech/service" - -interface RfqPageProps { - searchParams: Promise<SearchParams>; - title: string; - description: string; -} - -export default async function RfqPage({ - searchParams, - title = "기술영업 해양 RFQ", - description = "기술영업 해양 RFQ를 등록하고 관리할 수 있습니다." -}: RfqPageProps) { - const search = searchParamsCache.parse(await searchParams) - - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getRfqs({ - ...search, - filters: validFilters, - }), - getRfqStatusCounts(), - getAllOffshoreItems() - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - {title} - </h2> - <p className="text-muted-foreground"> - {description} - </p> - </div> - </div> - </div> - - <React.Suspense fallback={<Skeleton className="h-7 w-52" />}> - {/* <DateRangePicker - triggerSize="sm" - triggerClassName="ml-auto w-56 sm:w-60" - align="end" - shallow={false} - /> */} - </React.Suspense> - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <RfqsTable promises={promises} /> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/engineering/(engineering)/tag-numbering/page.tsx b/app/[lng]/engineering/(engineering)/tag-numbering/page.tsx index 44695259..86ad2ec2 100644 --- a/app/[lng]/engineering/(engineering)/tag-numbering/page.tsx +++ b/app/[lng]/engineering/(engineering)/tag-numbering/page.tsx @@ -36,14 +36,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 태그 타입 목록 from S-EDP </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 태그 넘버링을 위한 룰셋을 S-EDP로부터 가져오고 확인할 수 있습니다{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/engineering/(engineering)/tbe-tech/page.tsx b/app/[lng]/engineering/(engineering)/tbe-tech/page.tsx deleted file mode 100644 index 17b01ce2..00000000 --- a/app/[lng]/engineering/(engineering)/tbe-tech/page.tsx +++ /dev/null @@ -1,67 +0,0 @@ -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getAllTBE } from "@/lib/rfqs-tech/service" -import { searchParamsTBECache } from "@/lib/rfqs-tech/validations" -import { AllTbeTable } from "@/lib/tbe-tech/table/tbe-table" -import * as React from "react" -import { Shell } from "@/components/shell" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" - -interface IndexPageProps { - params: { - lng: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqTBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - - // URL 쿼리 파라미터에서 타입 추출 - const searchParams = await props.searchParams - - // SearchParams 파싱 (Zod) - const search = searchParamsTBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - // 현재 선택된 타입의 데이터 로드 - const promises = Promise.all([ - getAllTBE({ - ...search, - filters: validFilters, - }) - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation - </h2> - <p className="text-muted-foreground"> - 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/> - 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - </div> - </div> - - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <AllTbeTable promises={promises}/> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/engineering/(engineering)/tbe/page.tsx b/app/[lng]/engineering/(engineering)/tbe/page.tsx index 1a7fdf86..211cf376 100644 --- a/app/[lng]/engineering/(engineering)/tbe/page.tsx +++ b/app/[lng]/engineering/(engineering)/tbe/page.tsx @@ -67,12 +67,12 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/> 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/engineering/(engineering)/tech-project-avl/page.tsx b/app/[lng]/engineering/(engineering)/tech-project-avl/page.tsx index d942c5c5..21bc7b5d 100644 --- a/app/[lng]/engineering/(engineering)/tech-project-avl/page.tsx +++ b/app/[lng]/engineering/(engineering)/tech-project-avl/page.tsx @@ -46,16 +46,16 @@ export default async function AcceptedQuotationsPage({ <div className="flex items-center justify-between space-y-2">
<div>
<h2 className="text-2xl font-bold tracking-tight">
- 승인된 견적서(해양TOP,HULL)
+ 승인된 견적서(해양TOP,HULL) 관리
</h2>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
기술영업 승인 견적서에 대한 요약 정보를 확인하고{" "}
<span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
을 통해 RFQ 코드, 설명, 업체명, 업체 코드 등의 상세 정보를 확인할 수 있습니다.
- </p>
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/engineering/(engineering)/vendor-check-list/page.tsx b/app/[lng]/engineering/(engineering)/vendor-check-list/page.tsx index 3fd7e425..e6f9ce82 100644 --- a/app/[lng]/engineering/(engineering)/vendor-check-list/page.tsx +++ b/app/[lng]/engineering/(engineering)/vendor-check-list/page.tsx @@ -34,16 +34,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 정기평가 체크리스트 + 협력업체 평가자료 문항 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 평가에 사용되는 정기평가 체크리스트를 관리{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/engineering/(engineering)/vendor-investigation/page.tsx b/app/[lng]/engineering/(engineering)/vendor-investigation/page.tsx index c59de869..af9f3e11 100644 --- a/app/[lng]/engineering/(engineering)/vendor-investigation/page.tsx +++ b/app/[lng]/engineering/(engineering)/vendor-investigation/page.tsx @@ -34,12 +34,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Investigation Management + 협력업체 실사 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 Vendor 실사에 대한 스케줄 정보를 관리하고 결과를 입력할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx b/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx index 1345667d..189d29e0 100644 --- a/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx +++ b/app/[lng]/evcp/(evcp)/basic-contract-template/page.tsx @@ -40,14 +40,14 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/basic-contract-template" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 기본계약서를 비롯하여 초기 서명이 필요한 문서를 등록하고 편집할 수 있습니다. 활성화된 템플릿이 서명 요청의 리스트에 나타나게 됩니다..{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/basic-contract/page.tsx b/app/[lng]/evcp/(evcp)/basic-contract/page.tsx index 9bc66b49..69a65b14 100644 --- a/app/[lng]/evcp/(evcp)/basic-contract/page.tsx +++ b/app/[lng]/evcp/(evcp)/basic-contract/page.tsx @@ -40,14 +40,14 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/basic-contract" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 기본계약서를 비롯하여 초기 서명이 필요한 문서의 서명 현황을 확인할 수 있고 서명된 문서들을 다운로드할 수 있습니다. {" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/bqcbe/page.tsx b/app/[lng]/evcp/(evcp)/bqcbe/page.tsx index ae503feb..6f97efd3 100644 --- a/app/[lng]/evcp/(evcp)/bqcbe/page.tsx +++ b/app/[lng]/evcp/(evcp)/bqcbe/page.tsx @@ -47,11 +47,11 @@ export default async function RfqCBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation + CBE 보내기 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br/>체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/bqtbe/page.tsx b/app/[lng]/evcp/(evcp)/bqtbe/page.tsx index 4989c235..a1fee1b6 100644 --- a/app/[lng]/evcp/(evcp)/bqtbe/page.tsx +++ b/app/[lng]/evcp/(evcp)/bqtbe/page.tsx @@ -45,11 +45,11 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 보내기 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/>체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/budgetary-rfq/page.tsx b/app/[lng]/evcp/(evcp)/budgetary-rfq/page.tsx index ae5f2b48..290b9f27 100644 --- a/app/[lng]/evcp/(evcp)/budgetary-rfq/page.tsx +++ b/app/[lng]/evcp/(evcp)/budgetary-rfq/page.tsx @@ -51,14 +51,14 @@ export default async function RfqPage({ </h2> <InformationButton pagePath="evcp/budgetary-rfq" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} 기본적인 정보와 RFQ를 위한 아이템 등록 및 첨부를 한 후, <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 클릭하면 "Proceed"를 통해 상세화면으로 이동하여 진행할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/budgetary/page.tsx b/app/[lng]/evcp/(evcp)/budgetary/page.tsx index 04550353..15b4cdd4 100644 --- a/app/[lng]/evcp/(evcp)/budgetary/page.tsx +++ b/app/[lng]/evcp/(evcp)/budgetary/page.tsx @@ -48,14 +48,14 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} 기본적인 정보와 RFQ를 위한 아이템 등록 및 첨부를 한 후, <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 클릭하면 "Proceed"를 통해 상세화면으로 이동하여 진행할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/cbe-tech/page.tsx b/app/[lng]/evcp/(evcp)/cbe-tech/page.tsx deleted file mode 100644 index 4dadc58f..00000000 --- a/app/[lng]/evcp/(evcp)/cbe-tech/page.tsx +++ /dev/null @@ -1,67 +0,0 @@ -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getAllCBE } from "@/lib/rfqs-tech/service" -import { searchParamsCBECache } from "@/lib/rfqs-tech/validations" -import { AllCbeTable } from "@/lib/cbe-tech/table/cbe-table" -import * as React from "react" -import { Shell } from "@/components/shell" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" - -interface IndexPageProps { - params: { - lng: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqCBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - - // URL 쿼리 파라미터에서 타입 추출 - const searchParams = await props.searchParams - - // SearchParams 파싱 (Zod) - const search = searchParamsCBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - // 현재 선택된 타입의 데이터 로드 - const promises = Promise.all([ - getAllCBE({ - ...search, - filters: validFilters, - }) - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation - </h2> - <p className="text-muted-foreground"> - 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br/> - 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - </div> - </div> - - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <AllCbeTable promises={promises}/> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/email-template/page.tsx b/app/[lng]/evcp/(evcp)/email-template/page.tsx index 520fd8d5..d66b1588 100644 --- a/app/[lng]/evcp/(evcp)/email-template/page.tsx +++ b/app/[lng]/evcp/(evcp)/email-template/page.tsx @@ -13,7 +13,7 @@ export default async function MailTemplatesPage() { <h1 className="text-3xl font-bold text-gray-900 mb-2">메일 템플릿 관리</h1>
<InformationButton pagePath="evcp/email-template" />
</div>
- <p className="text-gray-600">이메일 템플릿을 관리할 수 있습니다.</p>
+ {/* <p className="text-gray-600">이메일 템플릿을 관리할 수 있습니다.</p> */}
</div>
<MailTemplatesClient initialData={initialData} />
diff --git a/app/[lng]/evcp/(evcp)/equip-class/page.tsx b/app/[lng]/evcp/(evcp)/equip-class/page.tsx index 15f4f333..ddfabf52 100644 --- a/app/[lng]/evcp/(evcp)/equip-class/page.tsx +++ b/app/[lng]/evcp/(evcp)/equip-class/page.tsx @@ -40,14 +40,14 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/equip-class" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 객체 클래스 목록을 확인할 수 있습니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/esg-check-list/page.tsx b/app/[lng]/evcp/(evcp)/esg-check-list/page.tsx index 7bbd058f..a573c77b 100644 --- a/app/[lng]/evcp/(evcp)/esg-check-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/esg-check-list/page.tsx @@ -35,18 +35,18 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - ESG 자가진단표 + ESG 자가진단평가서 항목 관리 </h2> <InformationButton pagePath="evcp/esg-check-list" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 평가에 사용되는 ESG 자가진단표를 관리{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/evaluation-check-list/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-check-list/page.tsx index 56f18e92..ccd6766b 100644 --- a/app/[lng]/evcp/(evcp)/evaluation-check-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/evaluation-check-list/page.tsx @@ -37,18 +37,18 @@ async function EvaluationCriteriaPage(props: EvaluationCriteriaPageProps) { <div>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold tracking-tight">
- 협력업체 평가기준표
+ 협력업체 평가기준표 관리
</h2>
<InformationButton pagePath="evcp/evaluation-check-list" />
</div>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
협력업체 평가에 사용되는 평가기준표를 관리{" "}
- {/* <span className="inline-flex items-center whitespace-nowrap">
+ <span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
- 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */}
- </p>
+ 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다.
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx index 2cf5449f..51478cc0 100644 --- a/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx +++ b/app/[lng]/evcp/(evcp)/evaluation-input/page.tsx @@ -34,12 +34,12 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 정기평가 + 협력업체 정기평가 입력 </h2> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 정기평가를 입력하고 제출할 수 있습니다. - </p> + </p> */} </div> </div> @@ -74,7 +74,7 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 정기평가 + 협력업체 정기평가 입력 </h2> </div> </div> @@ -104,11 +104,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 정기평가 + 협력업체 정기평가 입력 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 정기평가를 입력하고 제출할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx index 9ec30b66..a0523eea 100644 --- a/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx @@ -18,7 +18,7 @@ import { getEvaluationTargets } from "@/lib/evaluation-target-list/service" import { EvaluationTargetsTable } from "@/lib/evaluation-target-list/table/evaluation-target-table" import { InformationButton } from "@/components/information/information-button" export const metadata: Metadata = { - title: "협력업체 평가 대상 확정", + title: "협력업체 평가 대상 관리", description: "협력업체 평가 대상을 확정하고 담당자를 지정합니다.", } @@ -68,7 +68,7 @@ export default async function EvaluationTargetsPage(props: EvaluationTargetsPage <div className="flex items-center gap-2"> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 평가 대상 확정 + 협력업체 평가 대상 관리 </h2> <InformationButton pagePath="evcp/evaluation-target-list" /> </div> diff --git a/app/[lng]/evcp/(evcp)/faq/page.tsx b/app/[lng]/evcp/(evcp)/faq/page.tsx index 558d140b..76a61eda 100644 --- a/app/[lng]/evcp/(evcp)/faq/page.tsx +++ b/app/[lng]/evcp/(evcp)/faq/page.tsx @@ -26,17 +26,17 @@ export default async function FaqPage(props: Props) { <div className="flex justify-between items-center">
<div className="space-y-0.5">
<div className="flex items-center gap-2">
- <h2 className="text-2xl font-bold tracking-tight">Frequently Asked Questions</h2>
+ <h2 className="text-2xl font-bold tracking-tight">FAQ</h2>
<InformationButton pagePath="evcp/faq" />
</div>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
Find answers to common questions about using the EVCP system.
- </p>
+ </p> */}
</div>
<Link href={`/${lng}/evcp/faq/manage`}>
<Button variant="outline">
<Settings className="w-4 h-4 mr-2" />
- Manage FAQ
+ FAQ 관리
</Button>
</Link>
</div>
diff --git a/app/[lng]/evcp/(evcp)/form-list/page.tsx b/app/[lng]/evcp/(evcp)/form-list/page.tsx index b9bdb8e9..7f04cc3e 100644 --- a/app/[lng]/evcp/(evcp)/form-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/form-list/page.tsx @@ -41,14 +41,14 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/form-list" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 데이터 입력을 위한 레지스터 목록 리스트입니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/incoterms/page.tsx b/app/[lng]/evcp/(evcp)/incoterms/page.tsx index dcfca922..bf7f9313 100644 --- a/app/[lng]/evcp/(evcp)/incoterms/page.tsx +++ b/app/[lng]/evcp/(evcp)/incoterms/page.tsx @@ -32,9 +32,9 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight">인코텀즈 관리</h2> <InformationButton pagePath="evcp/incoterms" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 인코텀즈(Incoterms)를 등록, 수정, 삭제할 수 있습니다. - </p> + </p> */} </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> diff --git a/app/[lng]/evcp/(evcp)/items/page.tsx b/app/[lng]/evcp/(evcp)/items/page.tsx index fb0734a9..d61b50df 100644 --- a/app/[lng]/evcp/(evcp)/items/page.tsx +++ b/app/[lng]/evcp/(evcp)/items/page.tsx @@ -36,13 +36,13 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 패키지 정보 + 패키지 넘버 </h2> <InformationButton pagePath="evcp/items" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신된 패키지 정보이며 PR 전 입찰, 견적에 사용되며 벤더 데이터, 문서와 연결됩니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/evcp/(evcp)/login-history/page.tsx b/app/[lng]/evcp/(evcp)/login-history/page.tsx index bd4d42cb..dbc8089f 100644 --- a/app/[lng]/evcp/(evcp)/login-history/page.tsx +++ b/app/[lng]/evcp/(evcp)/login-history/page.tsx @@ -37,9 +37,9 @@ export default async function LoginHistoryPage(props: LoginHistoryPageProps) { 로그인 세션 이력 </h2> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 사용자의 로그인/로그아웃 이력과 세션 정보를 확인할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/menu-access/page.tsx b/app/[lng]/evcp/(evcp)/menu-access/page.tsx index b99a3342..7f5228df 100644 --- a/app/[lng]/evcp/(evcp)/menu-access/page.tsx +++ b/app/[lng]/evcp/(evcp)/menu-access/page.tsx @@ -32,9 +32,9 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight">메뉴 접근제어 관리</h2> <InformationButton pagePath="evcp/menu-access" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 화면, 메뉴별로 접근 통제를 할 수 있습니다. 도메인을 설정하면 해당 도메인에 대한 접근만 가능합니다. - </p> + </p> */} </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> diff --git a/app/[lng]/evcp/(evcp)/menu-list/page.tsx b/app/[lng]/evcp/(evcp)/menu-list/page.tsx index 1632eeee..6645127f 100644 --- a/app/[lng]/evcp/(evcp)/menu-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/menu-list/page.tsx @@ -28,9 +28,9 @@ export default async function MenuListPage() { </h2> <InformationButton pagePath="evcp/menu-list" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 각 메뉴별로 담당자를 지정하고 관리할 수 있습니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/evcp/(evcp)/page-visits/page.tsx b/app/[lng]/evcp/(evcp)/page-visits/page.tsx index 38386d51..07275cad 100644 --- a/app/[lng]/evcp/(evcp)/page-visits/page.tsx +++ b/app/[lng]/evcp/(evcp)/page-visits/page.tsx @@ -36,9 +36,9 @@ export default async function PageVisitsPage(props: PageVisitsPageProps) { 페이지 방문 이력 </h2> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 사용자의 페이지별 방문 이력과 활동 패턴을 확인할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx b/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx index 40d0cf54..49724328 100644 --- a/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx +++ b/app/[lng]/evcp/(evcp)/payment-conditions/page.tsx @@ -29,12 +29,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <div className="flex items-center gap-2"> - <h2 className="text-2xl font-bold tracking-tight">결제 조건 관리</h2> + <h2 className="text-2xl font-bold tracking-tight">지급 조건 관리</h2> <InformationButton pagePath="evcp/payment-conditions" /> </div> - <p className="text-muted-foreground"> - 결제 조건(Payment Terms)을 등록, 수정, 삭제할 수 있습니다. - </p> + {/* <p className="text-muted-foreground"> + 지급 조건(Payment Terms)을 등록, 수정, 삭제할 수 있습니다. + </p> */} </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> diff --git a/app/[lng]/evcp/(evcp)/po-rfq/page.tsx b/app/[lng]/evcp/(evcp)/po-rfq/page.tsx index 5a7c7ae0..27e48384 100644 --- a/app/[lng]/evcp/(evcp)/po-rfq/page.tsx +++ b/app/[lng]/evcp/(evcp)/po-rfq/page.tsx @@ -35,7 +35,7 @@ export default async function RfqPage(props: RfqPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 발주용 견적 + RFQ </h2> <InformationButton pagePath="evcp/po-rfq" /> </div> diff --git a/app/[lng]/evcp/(evcp)/po/page.tsx b/app/[lng]/evcp/(evcp)/po/page.tsx index 8edb1207..d8e32963 100644 --- a/app/[lng]/evcp/(evcp)/po/page.tsx +++ b/app/[lng]/evcp/(evcp)/po/page.tsx @@ -39,10 +39,10 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/po" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 기간계 시스템으로부터 PO를 확인하고 협력업체에게 전자서명을 요청할 수 있습니다. 요쳥된 전자서명의 이력 또한 확인할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/poa/page.tsx b/app/[lng]/evcp/(evcp)/poa/page.tsx index 55b5240d..0ced4957 100644 --- a/app/[lng]/evcp/(evcp)/poa/page.tsx +++ b/app/[lng]/evcp/(evcp)/poa/page.tsx @@ -37,9 +37,9 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/poa" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 발행된 PO의 변경 내역을 확인하고 관리할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/pq-criteria/page.tsx b/app/[lng]/evcp/(evcp)/pq-criteria/page.tsx index 34908028..20d16085 100644 --- a/app/[lng]/evcp/(evcp)/pq-criteria/page.tsx +++ b/app/[lng]/evcp/(evcp)/pq-criteria/page.tsx @@ -35,13 +35,13 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Pre-Qualification Check Sheet + PQ 항목 관리 </h2> <InformationButton pagePath="evcp/pq-criteria" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 등록을 위한, 협력업체가 제출할 PQ 항목을 관리할 수 있습니다. - </p> + </p> */} </div> <ProjectSelectorWrapper /> </div> diff --git a/app/[lng]/evcp/(evcp)/pq/page.tsx b/app/[lng]/evcp/(evcp)/pq/page.tsx index da123ce2..1607db19 100644 --- a/app/[lng]/evcp/(evcp)/pq/page.tsx +++ b/app/[lng]/evcp/(evcp)/pq/page.tsx @@ -35,14 +35,14 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Pre-Qualification Review + PQ 관리 </h2> <InformationButton pagePath="evcp/pq" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 벤더가 제출한 PQ를 확인하고 수정 요청 등을 할 수 있으며 PQ 종료 후에는 통과 여부를 결정할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/pq_new/page.tsx b/app/[lng]/evcp/(evcp)/pq_new/page.tsx index 2e5e3e01..f2dddce5 100644 --- a/app/[lng]/evcp/(evcp)/pq_new/page.tsx +++ b/app/[lng]/evcp/(evcp)/pq_new/page.tsx @@ -9,7 +9,7 @@ import { getPQSubmissions } from "@/lib/pq/service" import { PQSubmissionsTable } from "@/lib/pq/pq-review-table-new/vendors-table" import { InformationButton } from "@/components/information/information-button" export const metadata: Metadata = { - title: "PQ 검토/실사 의뢰", + title: "협력업체 PQ/실사 현황", description: "", } @@ -71,7 +71,7 @@ export default async function PQReviewPage(props: PQReviewPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - PQ 검토/실사 의뢰 + 협력업체 PQ/실사 현황 </h2> <InformationButton pagePath="evcp/pq_new" /> </div> diff --git a/app/[lng]/evcp/(evcp)/project-gtc/page.tsx b/app/[lng]/evcp/(evcp)/project-gtc/page.tsx index 05a8388c..b2588d2c 100644 --- a/app/[lng]/evcp/(evcp)/project-gtc/page.tsx +++ b/app/[lng]/evcp/(evcp)/project-gtc/page.tsx @@ -32,14 +32,14 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Project GTC + 프로젝트 GTC 관리 </h2> <InformationButton pagePath="evcp/project-gtc" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 프로젝트별 GTC(General Terms and Conditions) 파일을 관리할 수 있습니다. 각 프로젝트마다 하나의 GTC 파일을 업로드할 수 있으며, 파일 업로드 시 기존 파일은 자동으로 교체됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/project-vendors/page.tsx b/app/[lng]/evcp/(evcp)/project-vendors/page.tsx index 1bf316b6..07caddbb 100644 --- a/app/[lng]/evcp/(evcp)/project-vendors/page.tsx +++ b/app/[lng]/evcp/(evcp)/project-vendors/page.tsx @@ -39,14 +39,14 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/project-vendors" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 프로젝트 PQ를 통과한 벤더의 리스트를 보여줍니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/projects/page.tsx b/app/[lng]/evcp/(evcp)/projects/page.tsx index 401de7e0..c3d429d1 100644 --- a/app/[lng]/evcp/(evcp)/projects/page.tsx +++ b/app/[lng]/evcp/(evcp)/projects/page.tsx @@ -36,18 +36,18 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Project List from S-EDP + 프로젝트 리스트 from S-EDP </h2> <InformationButton pagePath="evcp/projects" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신하는 프로젝트 리스트입니다. 향후 MDG로 전환됩니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/qna/page.tsx b/app/[lng]/evcp/(evcp)/qna/page.tsx index f5d86ad4..188d0262 100644 --- a/app/[lng]/evcp/(evcp)/qna/page.tsx +++ b/app/[lng]/evcp/(evcp)/qna/page.tsx @@ -39,9 +39,9 @@ export default async function IndexPage(props: IndexPageProps) { Q&A </h2> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체로부터 수집된 질문에 대해서 댓글을 달거나 응답할 수 있습니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/cbe/page.tsx b/app/[lng]/evcp/(evcp)/rfq-tech/[id]/cbe/page.tsx deleted file mode 100644 index 84379caf..00000000 --- a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/cbe/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { searchParamsCBECache } from "@/lib/rfqs-tech/validations" -import { getCBE } from "@/lib/rfqs-tech/service" -import { CbeTable } from "@/lib/rfqs-tech/cbe-table/cbe-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqCBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsCBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getCBE({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Commercial Bid Evaluation - </h3> - <p className="text-sm text-muted-foreground"> - 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br />"발행하기" 버튼을 통해 CBE를 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <CbeTable promises={promises} rfqId={idAsNumber} /> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/layout.tsx b/app/[lng]/evcp/(evcp)/rfq-tech/[id]/layout.tsx deleted file mode 100644 index 0bb62fe0..00000000 --- a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/layout.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import { Metadata } from "next" -import Link from "next/link" -import { Separator } from "@/components/ui/separator" -import { SidebarNav } from "@/components/layout/sidebar-nav" -import { RfqViewWithItems } from "@/db/schema/rfq" -import { findRfqById } from "@/lib/rfqs-tech/service" -import { formatDate } from "@/lib/utils" -import { Button } from "@/components/ui/button" -import { ArrowLeft } from "lucide-react" - -export const metadata: Metadata = { - title: "Vendor Detail", -} - -export default async function RfqLayout({ - children, - params, -}: { - children: React.ReactNode - params: { lng: string, id: string } -}) { - - // 1) URL 파라미터에서 id 추출, Number로 변환 - const resolvedParams = await params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - // 2) DB에서 해당 협력업체 정보 조회 - const rfq: RfqViewWithItems | null = await findRfqById(idAsNumber) - - // 3) 사이드바 메뉴 - const sidebarNavItems = [ - { - title: "Matched Vendors", - href: `/${lng}/evcp/rfq-tech/${id}`, - }, - { - title: "TBE", - href: `/${lng}/evcp/rfq-tech/${id}/tbe`, - }, - { - title: "CBE", - href: `/${lng}/evcp/rfq-tech/${id}/cbe`, - }, - - ] - - return ( - <> - <div className="container py-6"> - <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> - <div className="hidden space-y-6 p-10 pb-16 md:block"> - <div className="flex items-center justify-end mb-4"> - <Link href={`/${lng}/evcp/rfq`} passHref> - <Button variant="ghost" className="flex items-center text-primary hover:text-primary/80 transition-colors p-0 h-auto"> - <ArrowLeft className="mr-1 h-4 w-4" /> - <span>RFQ 목록으로 돌아가기</span> - </Button> - </Link> - </div> - <div className="space-y-0.5"> - {/* 4) 협력업체 정보가 있으면 코드 + 이름 + "상세 정보" 표기 */} - <h2 className="text-2xl font-bold tracking-tight"> - {rfq - ? `${rfq.projectCode ?? ""} ${rfq.rfqCode ?? ""} 관리` - : "Loading RFQ..."} - </h2> - - <p className="text-muted-foreground"> - {rfq - ? `${rfq.description ?? ""} ${rfq.lines.map(line => line.itemCode).join(", ")}` - : ""} - </p> - <h3>Due Date:{rfq && rfq?.dueDate && <strong>{formatDate(rfq?.dueDate)}</strong>}</h3> - </div> - <Separator className="my-6" /> - <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> - <aside className="lg:w-64 flex-shrink-0"> - <SidebarNav items={sidebarNavItems} /> - </aside> - <div className="lg:w-[calc(100%-16rem)] overflow-auto">{children}</div> - </div> - </div> - </section> - </div> - </> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/page.tsx b/app/[lng]/evcp/(evcp)/rfq-tech/[id]/page.tsx deleted file mode 100644 index 007270a1..00000000 --- a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getMatchedVendors } from "@/lib/rfqs-tech/service" -import { searchParamsMatchedVCache } from "@/lib/rfqs-tech/validations" -import { MatchedVendorsTable } from "@/lib/rfqs-tech/vendor-table/vendors-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsMatchedVCache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getMatchedVendors({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Vendors - </h3> - <p className="text-sm text-muted-foreground"> - 등록된 협력업체 중에서 이 RFQ 아이템에 매칭되는 업체를 보여줍니다. <br/>"발행하기" 버튼을 통해 RFQ를 전송하면 첨부파일과 함께 RFQ 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <MatchedVendorsTable promises={promises} rfqId={idAsNumber}/> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/tbe/page.tsx b/app/[lng]/evcp/(evcp)/rfq-tech/[id]/tbe/page.tsx deleted file mode 100644 index 4b226cdc..00000000 --- a/app/[lng]/evcp/(evcp)/rfq-tech/[id]/tbe/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getTBE } from "@/lib/rfqs-tech/service" -import { searchParamsTBECache } from "@/lib/rfqs-tech/validations" -import { TbeTable } from "@/lib/rfqs-tech/tbe-table/tbe-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqTBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsTBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getTBE({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Technical Bid Evaluation - </h3> - <p className="text-sm text-muted-foreground"> - 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/>"발행하기" 버튼을 통해 TBE를 전송하면 첨부파일과 함께 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <TbeTable promises={promises} rfqId={idAsNumber}/> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/rfq-tech/page.tsx b/app/[lng]/evcp/(evcp)/rfq-tech/page.tsx deleted file mode 100644 index f35b3632..00000000 --- a/app/[lng]/evcp/(evcp)/rfq-tech/page.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import * as React from "react" -import { type SearchParams } from "@/types/table" - -import { getValidFilters } from "@/lib/data-table" -import { Skeleton } from "@/components/ui/skeleton" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" -import { Shell } from "@/components/shell" - -import { searchParamsCache } from "@/lib/rfqs-tech/validations" -import { getRfqs, getRfqStatusCounts } from "@/lib/rfqs-tech/service" -import { RfqsTable } from "@/lib/rfqs-tech/table/rfqs-table" -import { getAllOffshoreItems } from "@/lib/items-tech/service" - -interface RfqPageProps { - searchParams: Promise<SearchParams>; - title: string; - description: string; -} - -export default async function RfqPage({ - searchParams, - title = "기술영업 해양 RFQ", - description = "기술영업 해양 RFQ를 등록하고 관리할 수 있습니다." -}: RfqPageProps) { - const search = searchParamsCache.parse(await searchParams) - - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getRfqs({ - ...search, - filters: validFilters, - }), - getRfqStatusCounts(), - getAllOffshoreItems() - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - {title} - </h2> - <p className="text-muted-foreground"> - {description} - </p> - </div> - </div> - </div> - - <React.Suspense fallback={<Skeleton className="h-7 w-52" />}> - {/* <DateRangePicker - triggerSize="sm" - triggerClassName="ml-auto w-56 sm:w-60" - align="end" - shallow={false} - /> */} - </React.Suspense> - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <RfqsTable promises={promises} /> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/rfq/page.tsx b/app/[lng]/evcp/(evcp)/rfq/page.tsx index 3417b0bf..26f49cfb 100644 --- a/app/[lng]/evcp/(evcp)/rfq/page.tsx +++ b/app/[lng]/evcp/(evcp)/rfq/page.tsx @@ -47,9 +47,9 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/settings/layout.tsx b/app/[lng]/evcp/(evcp)/settings/layout.tsx index 6f373567..f3cea7d2 100644 --- a/app/[lng]/evcp/(evcp)/settings/layout.tsx +++ b/app/[lng]/evcp/(evcp)/settings/layout.tsx @@ -4,7 +4,7 @@ import { Separator } from "@/components/ui/separator" import { SidebarNav } from "@/components/layout/sidebar-nav" export const metadata: Metadata = { - title: "Settings", + title: "설정", // description: "Advanced form example using react-hook-form and Zod.", } @@ -46,10 +46,10 @@ export default async function SettingsLayout({ <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> - <h2 className="text-2xl font-bold tracking-tight">Settings</h2> - <p className="text-muted-foreground"> + <h2 className="text-2xl font-bold tracking-tight">설정</h2> + {/* <p className="text-muted-foreground"> Manage your account settings and preferences. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/evcp/(evcp)/settings/page.tsx b/app/[lng]/evcp/(evcp)/settings/page.tsx index a6eaac90..eba5e948 100644 --- a/app/[lng]/evcp/(evcp)/settings/page.tsx +++ b/app/[lng]/evcp/(evcp)/settings/page.tsx @@ -6,10 +6,10 @@ export default function SettingsAccountPage() { <div className="space-y-6"> <div> <h3 className="text-lg font-medium">Account</h3> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> Update your account settings. Set your preferred language and timezone. - </p> + </p> */} </div> <Separator /> <AccountForm /> diff --git a/app/[lng]/evcp/(evcp)/system/layout.tsx b/app/[lng]/evcp/(evcp)/system/layout.tsx index 7e8f69d0..2776ed8b 100644 --- a/app/[lng]/evcp/(evcp)/system/layout.tsx +++ b/app/[lng]/evcp/(evcp)/system/layout.tsx @@ -59,9 +59,9 @@ export default async function SettingsLayout({ <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> <h2 className="text-2xl font-bold tracking-tight">시스템 설정</h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 사용자, 롤, 접근 권한을 관리하세요. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/evcp/(evcp)/tag-numbering/page.tsx b/app/[lng]/evcp/(evcp)/tag-numbering/page.tsx index c211bad7..ef231108 100644 --- a/app/[lng]/evcp/(evcp)/tag-numbering/page.tsx +++ b/app/[lng]/evcp/(evcp)/tag-numbering/page.tsx @@ -39,14 +39,14 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/tag-numbering" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 태그 넘버링을 위한 룰셋을 S-EDP로부터 가져오고 확인할 수 있습니다{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/tbe-tech/page.tsx b/app/[lng]/evcp/(evcp)/tbe-tech/page.tsx deleted file mode 100644 index 17b01ce2..00000000 --- a/app/[lng]/evcp/(evcp)/tbe-tech/page.tsx +++ /dev/null @@ -1,67 +0,0 @@ -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getAllTBE } from "@/lib/rfqs-tech/service" -import { searchParamsTBECache } from "@/lib/rfqs-tech/validations" -import { AllTbeTable } from "@/lib/tbe-tech/table/tbe-table" -import * as React from "react" -import { Shell } from "@/components/shell" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" - -interface IndexPageProps { - params: { - lng: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqTBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - - // URL 쿼리 파라미터에서 타입 추출 - const searchParams = await props.searchParams - - // SearchParams 파싱 (Zod) - const search = searchParamsTBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - // 현재 선택된 타입의 데이터 로드 - const promises = Promise.all([ - getAllTBE({ - ...search, - filters: validFilters, - }) - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation - </h2> - <p className="text-muted-foreground"> - 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/> - 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - </div> - </div> - - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <AllTbeTable promises={promises}/> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/tbe/page.tsx b/app/[lng]/evcp/(evcp)/tbe/page.tsx index 1a7fdf86..211cf376 100644 --- a/app/[lng]/evcp/(evcp)/tbe/page.tsx +++ b/app/[lng]/evcp/(evcp)/tbe/page.tsx @@ -67,12 +67,12 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/> 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/tech-project-avl/page.tsx b/app/[lng]/evcp/(evcp)/tech-project-avl/page.tsx index e220f958..5ae0d09a 100644 --- a/app/[lng]/evcp/(evcp)/tech-project-avl/page.tsx +++ b/app/[lng]/evcp/(evcp)/tech-project-avl/page.tsx @@ -51,14 +51,14 @@ export default async function AcceptedQuotationsPage({ </h2>
<InformationButton pagePath="evcp/tech-project-avl" />
</div>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
기술영업 견적 Result 전송 정보를 확인하고{" "}
<span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
을 통해 견적 Result 전송 정보를 확인할 수 있습니다.
- </p>
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/evcp/(evcp)/tech-vendor-candidates/page.tsx b/app/[lng]/evcp/(evcp)/tech-vendor-candidates/page.tsx index 7e2ec9ff..2e45ebd8 100644 --- a/app/[lng]/evcp/(evcp)/tech-vendor-candidates/page.tsx +++ b/app/[lng]/evcp/(evcp)/tech-vendor-candidates/page.tsx @@ -37,13 +37,13 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Candidates Management + 협력업체 후보 관리 </h2> <InformationButton pagePath="evcp/tech-vendor-candidates" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 수집한 협력업체 후보를 등록하고 초대 메일을 송부할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/vendor-candidates/page.tsx b/app/[lng]/evcp/(evcp)/vendor-candidates/page.tsx index 6f8d5880..be6debce 100644 --- a/app/[lng]/evcp/(evcp)/vendor-candidates/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendor-candidates/page.tsx @@ -37,13 +37,13 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Candidates Management + 발굴업체 등록 관리 </h2> <InformationButton pagePath="evcp/vendor-candidates" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 수집한 협력업체 후보를 등록하고 초대 메일을 송부할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/vendor-check-list/page.tsx b/app/[lng]/evcp/(evcp)/vendor-check-list/page.tsx index 30021e2c..955c95f0 100644 --- a/app/[lng]/evcp/(evcp)/vendor-check-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendor-check-list/page.tsx @@ -35,18 +35,18 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 정기평가 체크리스트 + 협력업체 평가자료 문항 관리 </h2> <InformationButton pagePath="evcp/vendor-check-list" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 평가에 사용되는 정기평가 체크리스트를 관리{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx b/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx index 9b9a5ac5..1d7786a5 100644 --- a/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendor-investigation/page.tsx @@ -35,14 +35,14 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Investigation Management + 협력업체 실사 관리 </h2> <InformationButton pagePath="evcp/vendor-investigation" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 Vendor 실사에 대한 스케줄 정보를 관리하고 결과를 입력할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/vendor-type/page.tsx b/app/[lng]/evcp/(evcp)/vendor-type/page.tsx index 82324dbf..2e1aa396 100644 --- a/app/[lng]/evcp/(evcp)/vendor-type/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendor-type/page.tsx @@ -39,10 +39,10 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="evcp/vendor-type" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 업체 유형을 등록하고 관리할 수 있습니다.{" "} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/evcp/(evcp)/vendors/page.tsx b/app/[lng]/evcp/(evcp)/vendors/page.tsx index 4dbd642c..fb7bb14c 100644 --- a/app/[lng]/evcp/(evcp)/vendors/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendors/page.tsx @@ -38,18 +38,18 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 리스트 + 협력업체 관리 </h2> <InformationButton pagePath="evcp/vendors" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체에 대한 요약 정보를 확인하고{" "} <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. <br/>벤더의 상태에 따라 가입을 승인해주거나 PQ 요청을 할 수 있고 검토가 완료된 벤더를 기간계 시스템에 전송하여 협력업체 코드를 따올 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/partners/(partners)/basic-contract/page.tsx b/app/[lng]/partners/(partners)/basic-contract/page.tsx index 37b7d1a6..68ebade9 100644 --- a/app/[lng]/partners/(partners)/basic-contract/page.tsx +++ b/app/[lng]/partners/(partners)/basic-contract/page.tsx @@ -47,9 +47,9 @@ export default async function IndexPage(props: IndexPageProps) { </h2>
<InformationButton pagePath="partners/basic-contract" />
</div>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
기본계약서를 비롯하여 초기 서명이 필요한 문서의 서명 현황을 확인할 수 있고 서명을 진행할 수 있습니다. {" "}
- </p>
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/partners/(partners)/cbe-tech/page.tsx b/app/[lng]/partners/(partners)/cbe-tech/page.tsx index 35d7bba4..b8afd1df 100644 --- a/app/[lng]/partners/(partners)/cbe-tech/page.tsx +++ b/app/[lng]/partners/(partners)/cbe-tech/page.tsx @@ -52,13 +52,13 @@ export default async function CBEPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation + CBE 관리 </h2> <InformationButton pagePath="partners/cbe-tech" /> </div> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> CBE에 응답하고 커뮤니케이션을 할 수 있습니다.{" "} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/partners/(partners)/cbe/page.tsx b/app/[lng]/partners/(partners)/cbe/page.tsx index 01393551..4655cb60 100644 --- a/app/[lng]/partners/(partners)/cbe/page.tsx +++ b/app/[lng]/partners/(partners)/cbe/page.tsx @@ -52,13 +52,13 @@ export default async function CBEPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation + CBE 관리 </h2> <InformationButton pagePath="partners/cbe" /> </div> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> CBE에 응답하고 커뮤니케이션을 할 수 있습니다.{" "} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/partners/(partners)/document-list-ship/page.tsx b/app/[lng]/partners/(partners)/document-list-ship/page.tsx index f6ceb264..82f14ad8 100644 --- a/app/[lng]/partners/(partners)/document-list-ship/page.tsx +++ b/app/[lng]/partners/(partners)/document-list-ship/page.tsx @@ -34,13 +34,13 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Document Management + 문서 관리 </h2> <InformationButton pagePath="partners/document-list-ship" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 소속 회사의 모든 도서/도면을 확인하고 관리합니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/evaluation/page.tsx b/app/[lng]/partners/(partners)/evaluation/page.tsx index 085b3d65..cbb4696b 100644 --- a/app/[lng]/partners/(partners)/evaluation/page.tsx +++ b/app/[lng]/partners/(partners)/evaluation/page.tsx @@ -34,21 +34,21 @@ export default async function IndexPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 정기평가 + 평가자료 입력 </h2> <InformationButton pagePath="partners/evaluation" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 정기평가를 입력하고 제출할 수 있습니다. - </p> - </div> + </p> */} + </div> </div> <div className="flex flex-col items-center justify-center py-12 text-center"> <div className="rounded-lg border border-dashed p-10 shadow-sm"> <h3 className="mb-2 text-xl font-semibold">로그인이 필요합니다</h3> <p className="mb-6 text-muted-foreground"> - 정기평가를 확인하려면 먼저 로그인하세요. + 평가자료를 입력하려면 먼저 로그인하세요. </p> <Button size="lg" asChild> <Link href="/partners"> @@ -77,7 +77,7 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 정기평가 + 평가자료 입력 </h2> </div> </div> @@ -107,11 +107,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 정기평가 + 평가자료 입력 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 정기평가를 입력하고 제출할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/partners/(partners)/qna/page.tsx b/app/[lng]/partners/(partners)/qna/page.tsx index bdd1372d..d65ed1c8 100644 --- a/app/[lng]/partners/(partners)/qna/page.tsx +++ b/app/[lng]/partners/(partners)/qna/page.tsx @@ -39,9 +39,9 @@ export default async function IndexPage(props: IndexPageProps) { Q&A </h2> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체로부터 수집된 질문에 대해서 댓글을 달거나 응답할 수 있습니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/rfq-answer/page.tsx b/app/[lng]/partners/(partners)/rfq-answer/page.tsx index 9037062f..6eae491e 100644 --- a/app/[lng]/partners/(partners)/rfq-answer/page.tsx +++ b/app/[lng]/partners/(partners)/rfq-answer/page.tsx @@ -44,9 +44,9 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="partners/rfq-answer" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> RFQ 첨부파일 응답 현황을 확인하고 관리합니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/rfq-ship/page.tsx b/app/[lng]/partners/(partners)/rfq-ship/page.tsx index fbad280a..332cca2d 100644 --- a/app/[lng]/partners/(partners)/rfq-ship/page.tsx +++ b/app/[lng]/partners/(partners)/rfq-ship/page.tsx @@ -44,9 +44,9 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="partners/rfq-ship" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 진행 중인 견적서 목록을 확인하고 관리합니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/rfq-tech/page.tsx b/app/[lng]/partners/(partners)/rfq-tech/page.tsx index 154247fe..a41a7f0c 100644 --- a/app/[lng]/partners/(partners)/rfq-tech/page.tsx +++ b/app/[lng]/partners/(partners)/rfq-tech/page.tsx @@ -38,9 +38,9 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="partners/rfq-tech" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> RFQ를 응답하고 커뮤니케이션을 할 수 있습니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/rfq/page.tsx b/app/[lng]/partners/(partners)/rfq/page.tsx index 87202155..5cdb1dde 100644 --- a/app/[lng]/partners/(partners)/rfq/page.tsx +++ b/app/[lng]/partners/(partners)/rfq/page.tsx @@ -35,9 +35,9 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> RFQ </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> RFQ를 응답하고 커뮤니케이션을 할 수 있습니다. - </p> + </p> */} </div> </div> @@ -107,9 +107,9 @@ export default async function IndexPage(props: IndexPageProps) { </h2> <InformationButton pagePath="partners/rfq" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> RFQ를 응답하고 커뮤니케이션을 할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/partners/(partners)/settings/layout.tsx b/app/[lng]/partners/(partners)/settings/layout.tsx index 6f373567..f3cea7d2 100644 --- a/app/[lng]/partners/(partners)/settings/layout.tsx +++ b/app/[lng]/partners/(partners)/settings/layout.tsx @@ -4,7 +4,7 @@ import { Separator } from "@/components/ui/separator" import { SidebarNav } from "@/components/layout/sidebar-nav" export const metadata: Metadata = { - title: "Settings", + title: "설정", // description: "Advanced form example using react-hook-form and Zod.", } @@ -46,10 +46,10 @@ export default async function SettingsLayout({ <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> - <h2 className="text-2xl font-bold tracking-tight">Settings</h2> - <p className="text-muted-foreground"> + <h2 className="text-2xl font-bold tracking-tight">설정</h2> + {/* <p className="text-muted-foreground"> Manage your account settings and preferences. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/partners/(partners)/settings/page.tsx b/app/[lng]/partners/(partners)/settings/page.tsx index d831f0f4..412597a5 100644 --- a/app/[lng]/partners/(partners)/settings/page.tsx +++ b/app/[lng]/partners/(partners)/settings/page.tsx @@ -149,10 +149,10 @@ export default function SettingsAccountPage() { <div> <div className="flex items-center justify-between"> <div> - <h3 className="text-lg font-medium">Account Settings</h3> - <p className="text-sm text-muted-foreground"> + <h3 className="text-lg font-medium">계정</h3> + {/* <p className="text-sm text-muted-foreground"> Update your account settings and manage your profile information. - </p> + </p> */} </div> {/* 보안 상태 표시 */} diff --git a/app/[lng]/partners/(partners)/system/layout.tsx b/app/[lng]/partners/(partners)/system/layout.tsx index 504570bb..54330176 100644 --- a/app/[lng]/partners/(partners)/system/layout.tsx +++ b/app/[lng]/partners/(partners)/system/layout.tsx @@ -50,9 +50,9 @@ export default async function SettingsLayout({ <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> <h2 className="text-2xl font-bold tracking-tight">시스템 설정</h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 사용자, 롤, 접근 권한을 관리하세요. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/partners/(partners)/tbe/page.tsx b/app/[lng]/partners/(partners)/tbe/page.tsx index 96f42e09..38c24624 100644 --- a/app/[lng]/partners/(partners)/tbe/page.tsx +++ b/app/[lng]/partners/(partners)/tbe/page.tsx @@ -51,13 +51,13 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 관리 </h2> <InformationButton pagePath="partners/tbe" /> </div> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> TBE에 응답하고 커뮤니케이션을 할 수 있습니다.{" "} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx index 0325130e..b6ee8321 100644 --- a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx +++ b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx @@ -65,9 +65,9 @@ export default async function VendorQuotationsHullPage() { <h1 className="text-3xl font-bold tracking-tight">기술영업 해양HULL 견적서</h1> <InformationButton pagePath="partners/techsales/rfq-offshore-hull" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 할당받은 해양HULL RFQ에 대한 견적서를 작성하고 관리합니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/techsales/rfq-offshore-top/page.tsx b/app/[lng]/partners/(partners)/techsales/rfq-offshore-top/page.tsx index 6c3eaf56..015c04fc 100644 --- a/app/[lng]/partners/(partners)/techsales/rfq-offshore-top/page.tsx +++ b/app/[lng]/partners/(partners)/techsales/rfq-offshore-top/page.tsx @@ -67,9 +67,9 @@ export default async function VendorQuotationsTopPage() { <h1 className="text-3xl font-bold tracking-tight">기술영업 해양TOP 견적서</h1> <InformationButton pagePath="partners/techsales/rfq-offshore-top" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 할당받은 해양TOP RFQ에 대한 견적서를 작성하고 관리합니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/techsales/rfq-ship/page.tsx b/app/[lng]/partners/(partners)/techsales/rfq-ship/page.tsx index 68830184..ecf2151d 100644 --- a/app/[lng]/partners/(partners)/techsales/rfq-ship/page.tsx +++ b/app/[lng]/partners/(partners)/techsales/rfq-ship/page.tsx @@ -70,9 +70,9 @@ export default async function VendorQuotationsPage() { <h1 className="text-3xl font-bold tracking-tight">기술영업 조선 견적서</h1> <InformationButton pagePath="partners/techsales/rfq-ship" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 할당받은 조선 RFQ에 대한 견적서를 작성하고 관리합니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/partners/(partners)/vendor-data/layout.tsx b/app/[lng]/partners/(partners)/vendor-data/layout.tsx index cf658e80..5a6d9026 100644 --- a/app/[lng]/partners/(partners)/vendor-data/layout.tsx +++ b/app/[lng]/partners/(partners)/vendor-data/layout.tsx @@ -39,13 +39,13 @@ export default async function VendorDataLayout({ <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Data + 협력업체 데이터 </h2> <InformationButton pagePath="partners/vendor-data" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 각종 Data 입력할 수 있습니다 - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/basic-contract-template/page.tsx b/app/[lng]/procurement/(procurement)/basic-contract-template/page.tsx index adc57ed9..77f6239f 100644 --- a/app/[lng]/procurement/(procurement)/basic-contract-template/page.tsx +++ b/app/[lng]/procurement/(procurement)/basic-contract-template/page.tsx @@ -36,14 +36,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 기본계약서 템플릿 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 기본계약서를 비롯하여 초기 서명이 필요한 문서를 등록하고 편집할 수 있습니다. 활성화된 템플릿이 서명 요청의 리스트에 나타나게 됩니다..{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/basic-contract/page.tsx b/app/[lng]/procurement/(procurement)/basic-contract/page.tsx index a043e530..19211d4e 100644 --- a/app/[lng]/procurement/(procurement)/basic-contract/page.tsx +++ b/app/[lng]/procurement/(procurement)/basic-contract/page.tsx @@ -36,14 +36,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 기본계약서 서명 현황 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 기본계약서를 비롯하여 초기 서명이 필요한 문서의 서명 현황을 확인할 수 있고 서명된 문서들을 다운로드할 수 있습니다. {" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/bqcbe/page.tsx b/app/[lng]/procurement/(procurement)/bqcbe/page.tsx index ae503feb..831bb5a8 100644 --- a/app/[lng]/procurement/(procurement)/bqcbe/page.tsx +++ b/app/[lng]/procurement/(procurement)/bqcbe/page.tsx @@ -47,11 +47,11 @@ export default async function RfqCBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation + CBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br/>체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/bqtbe/page.tsx b/app/[lng]/procurement/(procurement)/bqtbe/page.tsx index 4989c235..3e56cfaa 100644 --- a/app/[lng]/procurement/(procurement)/bqtbe/page.tsx +++ b/app/[lng]/procurement/(procurement)/bqtbe/page.tsx @@ -45,11 +45,11 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/>체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/budgetary-rfq/page.tsx b/app/[lng]/procurement/(procurement)/budgetary-rfq/page.tsx index dc2a4a2b..f342bbff 100644 --- a/app/[lng]/procurement/(procurement)/budgetary-rfq/page.tsx +++ b/app/[lng]/procurement/(procurement)/budgetary-rfq/page.tsx @@ -48,14 +48,14 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} 기본적인 정보와 RFQ를 위한 아이템 등록 및 첨부를 한 후, <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 클릭하면 "Proceed"를 통해 상세화면으로 이동하여 진행할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/budgetary/page.tsx b/app/[lng]/procurement/(procurement)/budgetary/page.tsx index 04550353..15b4cdd4 100644 --- a/app/[lng]/procurement/(procurement)/budgetary/page.tsx +++ b/app/[lng]/procurement/(procurement)/budgetary/page.tsx @@ -48,14 +48,14 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} 기본적인 정보와 RFQ를 위한 아이템 등록 및 첨부를 한 후, <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 클릭하면 "Proceed"를 통해 상세화면으로 이동하여 진행할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/email-template/page.tsx b/app/[lng]/procurement/(procurement)/email-template/page.tsx index 1ef3de6c..7c1156ee 100644 --- a/app/[lng]/procurement/(procurement)/email-template/page.tsx +++ b/app/[lng]/procurement/(procurement)/email-template/page.tsx @@ -10,7 +10,7 @@ export default async function MailTemplatesPage() { <div className="container mx-auto p-6">
<div className="mb-8">
<h1 className="text-3xl font-bold text-gray-900 mb-2">메일 템플릿 관리</h1>
- <p className="text-gray-600">이메일 템플릿을 관리할 수 있습니다.</p>
+ {/* <p className="text-gray-600">이메일 템플릿을 관리할 수 있습니다.</p> */}
</div>
<MailTemplatesClient initialData={initialData} />
diff --git a/app/[lng]/procurement/(procurement)/equip-class/page.tsx b/app/[lng]/procurement/(procurement)/equip-class/page.tsx index cfa8f133..34fd32b6 100644 --- a/app/[lng]/procurement/(procurement)/equip-class/page.tsx +++ b/app/[lng]/procurement/(procurement)/equip-class/page.tsx @@ -37,14 +37,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 객체 클래스 목록 from S-EDP </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 객체 클래스 목록을 확인할 수 있습니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/esg-check-list/page.tsx b/app/[lng]/procurement/(procurement)/esg-check-list/page.tsx index 515751d5..8bccd3b7 100644 --- a/app/[lng]/procurement/(procurement)/esg-check-list/page.tsx +++ b/app/[lng]/procurement/(procurement)/esg-check-list/page.tsx @@ -34,16 +34,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - ESG 자가진단표 + ESG 자가진단평가서 항목 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 평가에 사용되는 ESG 자가진단표를 관리{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/evaluation-check-list/page.tsx b/app/[lng]/procurement/(procurement)/evaluation-check-list/page.tsx index a660c492..45da961b 100644 --- a/app/[lng]/procurement/(procurement)/evaluation-check-list/page.tsx +++ b/app/[lng]/procurement/(procurement)/evaluation-check-list/page.tsx @@ -36,16 +36,16 @@ async function EvaluationCriteriaPage(props: EvaluationCriteriaPageProps) { <div className="flex items-center justify-between space-y-2">
<div>
<h2 className="text-2xl font-bold tracking-tight">
- 협력업체 평가기준표
+ 협력업체 평가기준표 관리
</h2>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
협력업체 평가에 사용되는 평가기준표를 관리{" "}
- {/* <span className="inline-flex items-center whitespace-nowrap">
+ <span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
- 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */}
- </p>
+ 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다.
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/procurement/(procurement)/evaluation-input/page.tsx b/app/[lng]/procurement/(procurement)/evaluation-input/page.tsx index 2cf5449f..00f1820f 100644 --- a/app/[lng]/procurement/(procurement)/evaluation-input/page.tsx +++ b/app/[lng]/procurement/(procurement)/evaluation-input/page.tsx @@ -37,9 +37,9 @@ export default async function IndexPage(props: IndexPageProps) { 정기평가 </h2> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 정기평가를 입력하고 제출할 수 있습니다. - </p> + </p> */} </div> </div> @@ -106,9 +106,9 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 정기평가 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 정기평가를 입력하고 제출할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/evaluation-target-list/page.tsx b/app/[lng]/procurement/(procurement)/evaluation-target-list/page.tsx index 9ec30b66..a0523eea 100644 --- a/app/[lng]/procurement/(procurement)/evaluation-target-list/page.tsx +++ b/app/[lng]/procurement/(procurement)/evaluation-target-list/page.tsx @@ -18,7 +18,7 @@ import { getEvaluationTargets } from "@/lib/evaluation-target-list/service" import { EvaluationTargetsTable } from "@/lib/evaluation-target-list/table/evaluation-target-table" import { InformationButton } from "@/components/information/information-button" export const metadata: Metadata = { - title: "협력업체 평가 대상 확정", + title: "협력업체 평가 대상 관리", description: "협력업체 평가 대상을 확정하고 담당자를 지정합니다.", } @@ -68,7 +68,7 @@ export default async function EvaluationTargetsPage(props: EvaluationTargetsPage <div className="flex items-center gap-2"> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 평가 대상 확정 + 협력업체 평가 대상 관리 </h2> <InformationButton pagePath="evcp/evaluation-target-list" /> </div> diff --git a/app/[lng]/procurement/(procurement)/evaluation/page.tsx b/app/[lng]/procurement/(procurement)/evaluation/page.tsx index ead61077..2d8cbed7 100644 --- a/app/[lng]/procurement/(procurement)/evaluation/page.tsx +++ b/app/[lng]/procurement/(procurement)/evaluation/page.tsx @@ -42,9 +42,9 @@ function ProcessGuidePopover() { <div className="space-y-3"> <div className="space-y-1"> <h4 className="font-medium">정기평가 프로세스</h4> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> 확정된 평가 대상 업체들에 대한 정기평가 절차입니다. - </p> + </p> */} </div> <div className="space-y-3 text-sm"> <div className="flex gap-3"> diff --git a/app/[lng]/procurement/(procurement)/faq/page.tsx b/app/[lng]/procurement/(procurement)/faq/page.tsx index 9b62b7e4..56a4ee86 100644 --- a/app/[lng]/procurement/(procurement)/faq/page.tsx +++ b/app/[lng]/procurement/(procurement)/faq/page.tsx @@ -24,15 +24,15 @@ export default async function FaqPage(props: Props) { <div className="space-y-6 p-10 pb-16">
<div className="flex justify-between items-center">
<div className="space-y-0.5">
- <h2 className="text-2xl font-bold tracking-tight">Frequently Asked Questions</h2>
- <p className="text-muted-foreground">
+ <h2 className="text-2xl font-bold tracking-tight">자주 묻는 질문</h2>
+ {/* <p className="text-muted-foreground">
Find answers to common questions about using the EVCP system.
- </p>
+ </p> */}
</div>
<Link href={`/${lng}/evcp/faq/manage`}>
<Button variant="outline">
<Settings className="w-4 h-4 mr-2" />
- Manage FAQ
+ FAQ 관리
</Button>
</Link>
</div>
diff --git a/app/[lng]/procurement/(procurement)/incoterms/page.tsx b/app/[lng]/procurement/(procurement)/incoterms/page.tsx index 57a19009..804bc5af 100644 --- a/app/[lng]/procurement/(procurement)/incoterms/page.tsx +++ b/app/[lng]/procurement/(procurement)/incoterms/page.tsx @@ -29,9 +29,9 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight">인코텀즈 관리</h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 인코텀즈(Incoterms)를 등록, 수정, 삭제할 수 있습니다. - </p> + </p> */} </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> diff --git a/app/[lng]/procurement/(procurement)/items/page.tsx b/app/[lng]/procurement/(procurement)/items/page.tsx index 0c44bf0a..f8d9a5b1 100644 --- a/app/[lng]/procurement/(procurement)/items/page.tsx +++ b/app/[lng]/procurement/(procurement)/items/page.tsx @@ -35,11 +35,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 패키지 정보 + 패키지 넘버 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신된 패키지 정보이며 PR 전 입찰, 견적에 사용되며 벤더 데이터, 문서와 연결됩니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/procurement/(procurement)/menu-list/page.tsx b/app/[lng]/procurement/(procurement)/menu-list/page.tsx index 84138320..dee45ab1 100644 --- a/app/[lng]/procurement/(procurement)/menu-list/page.tsx +++ b/app/[lng]/procurement/(procurement)/menu-list/page.tsx @@ -25,9 +25,9 @@ export default async function MenuListPage() { <h2 className="text-2xl font-bold tracking-tight"> 메뉴 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 각 메뉴별로 담당자를 지정하고 관리할 수 있습니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/procurement/(procurement)/payment-conditions/page.tsx b/app/[lng]/procurement/(procurement)/payment-conditions/page.tsx index b9aedfbb..d001a39d 100644 --- a/app/[lng]/procurement/(procurement)/payment-conditions/page.tsx +++ b/app/[lng]/procurement/(procurement)/payment-conditions/page.tsx @@ -28,10 +28,10 @@ export default async function IndexPage(props: IndexPageProps) { <Shell className="gap-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight">결제 조건 관리</h2> - <p className="text-muted-foreground"> - 결제 조건(Payment Terms)을 등록, 수정, 삭제할 수 있습니다. - </p> + <h2 className="text-2xl font-bold tracking-tight">지급 조건 관리</h2> + {/* <p className="text-muted-foreground"> + 지급 조건(Payment Terms)을 등록, 수정, 삭제할 수 있습니다. + </p> */} </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> diff --git a/app/[lng]/procurement/(procurement)/po-rfq/page.tsx b/app/[lng]/procurement/(procurement)/po-rfq/page.tsx index bdeae25e..4a04d6a8 100644 --- a/app/[lng]/procurement/(procurement)/po-rfq/page.tsx +++ b/app/[lng]/procurement/(procurement)/po-rfq/page.tsx @@ -34,7 +34,7 @@ export default async function RfqPage(props: RfqPageProps) { <div className="flex items-center justify-between"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 발주용 견적 + RFQ </h2> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/po/page.tsx b/app/[lng]/procurement/(procurement)/po/page.tsx index 7868e231..b4dd914f 100644 --- a/app/[lng]/procurement/(procurement)/po/page.tsx +++ b/app/[lng]/procurement/(procurement)/po/page.tsx @@ -36,10 +36,10 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> PO 확인 및 전자서명 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 기간계 시스템으로부터 PO를 확인하고 협력업체에게 전자서명을 요청할 수 있습니다. 요쳥된 전자서명의 이력 또한 확인할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/poa/page.tsx b/app/[lng]/procurement/(procurement)/poa/page.tsx index dec5e05b..1c244991 100644 --- a/app/[lng]/procurement/(procurement)/poa/page.tsx +++ b/app/[lng]/procurement/(procurement)/poa/page.tsx @@ -34,9 +34,9 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 변경 PO 확인 및 전자서명 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 발행된 PO의 변경 내역을 확인하고 관리할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/pq-criteria/page.tsx b/app/[lng]/procurement/(procurement)/pq-criteria/page.tsx index 7785b541..4d2f2d0c 100644 --- a/app/[lng]/procurement/(procurement)/pq-criteria/page.tsx +++ b/app/[lng]/procurement/(procurement)/pq-criteria/page.tsx @@ -34,11 +34,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Pre-Qualification Check Sheet + PQ 항목 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 등록을 위한, 협력업체가 제출할 PQ 항목을 관리할 수 있습니다. - </p> + </p> */} </div> <ProjectSelectorWrapper /> </div> diff --git a/app/[lng]/procurement/(procurement)/pq_new/page.tsx b/app/[lng]/procurement/(procurement)/pq_new/page.tsx index 6598349b..550ac87d 100644 --- a/app/[lng]/procurement/(procurement)/pq_new/page.tsx +++ b/app/[lng]/procurement/(procurement)/pq_new/page.tsx @@ -9,7 +9,7 @@ import { getPQSubmissions } from "@/lib/pq/service" import { PQSubmissionsTable } from "@/lib/pq/pq-review-table-new/vendors-table" export const metadata: Metadata = { - title: "PQ 검토/실사 의뢰", + title: "협력업체 PQ/실사 현황", description: "", } @@ -70,7 +70,7 @@ export default async function PQReviewPage(props: PQReviewPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - PQ 검토/실사 의뢰 + 협력업체 PQ/실사 현황 </h2> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/project-gtc/page.tsx b/app/[lng]/procurement/(procurement)/project-gtc/page.tsx index 8e12a489..d5cb467a 100644 --- a/app/[lng]/procurement/(procurement)/project-gtc/page.tsx +++ b/app/[lng]/procurement/(procurement)/project-gtc/page.tsx @@ -31,12 +31,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Project GTC + 프로젝트 GTC 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 프로젝트별 GTC(General Terms and Conditions) 파일을 관리할 수 있습니다. 각 프로젝트마다 하나의 GTC 파일을 업로드할 수 있으며, 파일 업로드 시 기존 파일은 자동으로 교체됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/project-vendors/page.tsx b/app/[lng]/procurement/(procurement)/project-vendors/page.tsx index dcc66071..525cff07 100644 --- a/app/[lng]/procurement/(procurement)/project-vendors/page.tsx +++ b/app/[lng]/procurement/(procurement)/project-vendors/page.tsx @@ -36,14 +36,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 프로젝트 AVL 리스트 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 프로젝트 PQ를 통과한 벤더의 리스트를 보여줍니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/projects/page.tsx b/app/[lng]/procurement/(procurement)/projects/page.tsx index 0320f259..8c332c6c 100644 --- a/app/[lng]/procurement/(procurement)/projects/page.tsx +++ b/app/[lng]/procurement/(procurement)/projects/page.tsx @@ -35,16 +35,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Project List from S-EDP + 수행 프로젝트 리스트 from S-EDP </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신하는 프로젝트 리스트입니다. 향후 MDG로 전환됩니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/rfq/page.tsx b/app/[lng]/procurement/(procurement)/rfq/page.tsx index 3417b0bf..26f49cfb 100644 --- a/app/[lng]/procurement/(procurement)/rfq/page.tsx +++ b/app/[lng]/procurement/(procurement)/rfq/page.tsx @@ -47,9 +47,9 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/settings/layout.tsx b/app/[lng]/procurement/(procurement)/settings/layout.tsx index 6f373567..6c380919 100644 --- a/app/[lng]/procurement/(procurement)/settings/layout.tsx +++ b/app/[lng]/procurement/(procurement)/settings/layout.tsx @@ -46,10 +46,10 @@ export default async function SettingsLayout({ <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> - <h2 className="text-2xl font-bold tracking-tight">Settings</h2> - <p className="text-muted-foreground"> + <h2 className="text-2xl font-bold tracking-tight">설정</h2> + {/* <p className="text-muted-foreground"> Manage your account settings and preferences. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/procurement/(procurement)/settings/page.tsx b/app/[lng]/procurement/(procurement)/settings/page.tsx index a6eaac90..eba5e948 100644 --- a/app/[lng]/procurement/(procurement)/settings/page.tsx +++ b/app/[lng]/procurement/(procurement)/settings/page.tsx @@ -6,10 +6,10 @@ export default function SettingsAccountPage() { <div className="space-y-6"> <div> <h3 className="text-lg font-medium">Account</h3> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> Update your account settings. Set your preferred language and timezone. - </p> + </p> */} </div> <Separator /> <AccountForm /> diff --git a/app/[lng]/procurement/(procurement)/system/layout.tsx b/app/[lng]/procurement/(procurement)/system/layout.tsx index 7e8f69d0..2776ed8b 100644 --- a/app/[lng]/procurement/(procurement)/system/layout.tsx +++ b/app/[lng]/procurement/(procurement)/system/layout.tsx @@ -59,9 +59,9 @@ export default async function SettingsLayout({ <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> <h2 className="text-2xl font-bold tracking-tight">시스템 설정</h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 사용자, 롤, 접근 권한을 관리하세요. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/procurement/(procurement)/vendor-candidates/page.tsx b/app/[lng]/procurement/(procurement)/vendor-candidates/page.tsx index a6e00b1b..fb80cf64 100644 --- a/app/[lng]/procurement/(procurement)/vendor-candidates/page.tsx +++ b/app/[lng]/procurement/(procurement)/vendor-candidates/page.tsx @@ -36,11 +36,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Candidates Management + 발굴업체 등록 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 수집한 협력업체 후보를 등록하고 초대 메일을 송부할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/vendor-check-list/page.tsx b/app/[lng]/procurement/(procurement)/vendor-check-list/page.tsx index 3fd7e425..e6f9ce82 100644 --- a/app/[lng]/procurement/(procurement)/vendor-check-list/page.tsx +++ b/app/[lng]/procurement/(procurement)/vendor-check-list/page.tsx @@ -34,16 +34,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 정기평가 체크리스트 + 협력업체 평가자료 문항 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 평가에 사용되는 정기평가 체크리스트를 관리{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/vendor-investigation/page.tsx b/app/[lng]/procurement/(procurement)/vendor-investigation/page.tsx index c59de869..af9f3e11 100644 --- a/app/[lng]/procurement/(procurement)/vendor-investigation/page.tsx +++ b/app/[lng]/procurement/(procurement)/vendor-investigation/page.tsx @@ -34,12 +34,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Investigation Management + 협력업체 실사 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 요청된 Vendor 실사에 대한 스케줄 정보를 관리하고 결과를 입력할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/vendor-type/page.tsx b/app/[lng]/procurement/(procurement)/vendor-type/page.tsx index 997c0f82..96169e8a 100644 --- a/app/[lng]/procurement/(procurement)/vendor-type/page.tsx +++ b/app/[lng]/procurement/(procurement)/vendor-type/page.tsx @@ -36,10 +36,10 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 업체 유형 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 업체 유형을 등록하고 관리할 수 있습니다.{" "} - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/procurement/(procurement)/vendors/page.tsx b/app/[lng]/procurement/(procurement)/vendors/page.tsx index 52af0709..02616999 100644 --- a/app/[lng]/procurement/(procurement)/vendors/page.tsx +++ b/app/[lng]/procurement/(procurement)/vendors/page.tsx @@ -37,16 +37,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 리스트 + 협력업체 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체에 대한 요약 정보를 확인하고{" "} <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. <br/>벤더의 상태에 따라 가입을 승인해주거나 PQ 요청을 할 수 있고 검토가 완료된 벤더를 기간계 시스템에 전송하여 협력업체 코드를 따올 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/bid-projects/page.tsx b/app/[lng]/sales/(sales)/bid-projects/page.tsx index 2039e5b2..38cbf91a 100644 --- a/app/[lng]/sales/(sales)/bid-projects/page.tsx +++ b/app/[lng]/sales/(sales)/bid-projects/page.tsx @@ -34,16 +34,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 견적 프로젝트 리스트 + 견적 프로젝트 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> SAP(S-ERP)로부터 수신한 견적 프로젝트 데이터입니다. 기술영업의 Budgetary RFQ에서 사용됩니다. - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/bqcbe/page.tsx b/app/[lng]/sales/(sales)/bqcbe/page.tsx index ae503feb..30935645 100644 --- a/app/[lng]/sales/(sales)/bqcbe/page.tsx +++ b/app/[lng]/sales/(sales)/bqcbe/page.tsx @@ -47,11 +47,11 @@ export default async function RfqCBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation + CBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br/>체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/bqtbe/page.tsx b/app/[lng]/sales/(sales)/bqtbe/page.tsx index 4989c235..3e56cfaa 100644 --- a/app/[lng]/sales/(sales)/bqtbe/page.tsx +++ b/app/[lng]/sales/(sales)/bqtbe/page.tsx @@ -45,11 +45,11 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/>체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/budgetary-rfq/page.tsx b/app/[lng]/sales/(sales)/budgetary-rfq/page.tsx index dc2a4a2b..f342bbff 100644 --- a/app/[lng]/sales/(sales)/budgetary-rfq/page.tsx +++ b/app/[lng]/sales/(sales)/budgetary-rfq/page.tsx @@ -48,14 +48,14 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} 기본적인 정보와 RFQ를 위한 아이템 등록 및 첨부를 한 후, <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 클릭하면 "Proceed"를 통해 상세화면으로 이동하여 진행할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/budgetary/page.tsx b/app/[lng]/sales/(sales)/budgetary/page.tsx index 04550353..15b4cdd4 100644 --- a/app/[lng]/sales/(sales)/budgetary/page.tsx +++ b/app/[lng]/sales/(sales)/budgetary/page.tsx @@ -48,14 +48,14 @@ export default async function RfqPage({ <h2 className="text-2xl font-bold tracking-tight"> {title} </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {description} 기본적인 정보와 RFQ를 위한 아이템 등록 및 첨부를 한 후, <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> 을 클릭하면 "Proceed"를 통해 상세화면으로 이동하여 진행할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/cbe-tech/page.tsx b/app/[lng]/sales/(sales)/cbe-tech/page.tsx deleted file mode 100644 index 4dadc58f..00000000 --- a/app/[lng]/sales/(sales)/cbe-tech/page.tsx +++ /dev/null @@ -1,67 +0,0 @@ -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getAllCBE } from "@/lib/rfqs-tech/service" -import { searchParamsCBECache } from "@/lib/rfqs-tech/validations" -import { AllCbeTable } from "@/lib/cbe-tech/table/cbe-table" -import * as React from "react" -import { Shell } from "@/components/shell" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" - -interface IndexPageProps { - params: { - lng: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqCBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - - // URL 쿼리 파라미터에서 타입 추출 - const searchParams = await props.searchParams - - // SearchParams 파싱 (Zod) - const search = searchParamsCBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - // 현재 선택된 타입의 데이터 로드 - const promises = Promise.all([ - getAllCBE({ - ...search, - filters: validFilters, - }) - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - Commercial Bid Evaluation - </h2> - <p className="text-muted-foreground"> - 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br/> - 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - </div> - </div> - - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <AllCbeTable promises={promises}/> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/esg-check-list/page.tsx b/app/[lng]/sales/(sales)/esg-check-list/page.tsx index 515751d5..dd97c74c 100644 --- a/app/[lng]/sales/(sales)/esg-check-list/page.tsx +++ b/app/[lng]/sales/(sales)/esg-check-list/page.tsx @@ -34,16 +34,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - ESG 자가진단표 + ESG 자가진단평가 문항 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 협력업체 평가에 사용되는 ESG 자가진단표를 관리{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/evaluation-check-list/page.tsx b/app/[lng]/sales/(sales)/evaluation-check-list/page.tsx index a660c492..34409524 100644 --- a/app/[lng]/sales/(sales)/evaluation-check-list/page.tsx +++ b/app/[lng]/sales/(sales)/evaluation-check-list/page.tsx @@ -36,16 +36,16 @@ async function EvaluationCriteriaPage(props: EvaluationCriteriaPageProps) { <div className="flex items-center justify-between space-y-2">
<div>
<h2 className="text-2xl font-bold tracking-tight">
- 협력업체 평가기준표
+ 협력업체 평가기준표 관리
</h2>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
협력업체 평가에 사용되는 평가기준표를 관리{" "}
- {/* <span className="inline-flex items-center whitespace-nowrap">
+ <span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
- 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */}
- </p>
+ 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다.
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/sales/(sales)/evaluation-target-list/page.tsx b/app/[lng]/sales/(sales)/evaluation-target-list/page.tsx index 088ae75b..56b8ecef 100644 --- a/app/[lng]/sales/(sales)/evaluation-target-list/page.tsx +++ b/app/[lng]/sales/(sales)/evaluation-target-list/page.tsx @@ -18,7 +18,7 @@ import { getEvaluationTargets } from "@/lib/evaluation-target-list/service" import { EvaluationTargetsTable } from "@/lib/evaluation-target-list/table/evaluation-target-table" export const metadata: Metadata = { - title: "협력업체 평가 대상 확정", + title: "협력업체 평가 대상 관리", description: "협력업체 평가 대상을 확정하고 담당자를 지정합니다.", } @@ -67,7 +67,7 @@ export default async function EvaluationTargetsPage(props: EvaluationTargetsPage <div className="flex items-center justify-between space-y-2"> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 평가 대상 확정 + 협력업체 평가 대상 관리 </h2> <Badge variant="outline" className="text-sm"> {currentEvaluationYear}년도 diff --git a/app/[lng]/sales/(sales)/evaluation/page.tsx b/app/[lng]/sales/(sales)/evaluation/page.tsx index ead61077..2d8cbed7 100644 --- a/app/[lng]/sales/(sales)/evaluation/page.tsx +++ b/app/[lng]/sales/(sales)/evaluation/page.tsx @@ -42,9 +42,9 @@ function ProcessGuidePopover() { <div className="space-y-3"> <div className="space-y-1"> <h4 className="font-medium">정기평가 프로세스</h4> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> 확정된 평가 대상 업체들에 대한 정기평가 절차입니다. - </p> + </p> */} </div> <div className="space-y-3 text-sm"> <div className="flex gap-3"> diff --git a/app/[lng]/sales/(sales)/faq/page.tsx b/app/[lng]/sales/(sales)/faq/page.tsx index 9b62b7e4..00956591 100644 --- a/app/[lng]/sales/(sales)/faq/page.tsx +++ b/app/[lng]/sales/(sales)/faq/page.tsx @@ -24,15 +24,15 @@ export default async function FaqPage(props: Props) { <div className="space-y-6 p-10 pb-16">
<div className="flex justify-between items-center">
<div className="space-y-0.5">
- <h2 className="text-2xl font-bold tracking-tight">Frequently Asked Questions</h2>
- <p className="text-muted-foreground">
+ <h2 className="text-2xl font-bold tracking-tight">FAQ</h2>
+ {/* <p className="text-muted-foreground">
Find answers to common questions about using the EVCP system.
- </p>
+ </p> */}
</div>
<Link href={`/${lng}/evcp/faq/manage`}>
<Button variant="outline">
<Settings className="w-4 h-4 mr-2" />
- Manage FAQ
+ FAQ 관리
</Button>
</Link>
</div>
diff --git a/app/[lng]/sales/(sales)/items/page.tsx b/app/[lng]/sales/(sales)/items/page.tsx index 0c44bf0a..f8d9a5b1 100644 --- a/app/[lng]/sales/(sales)/items/page.tsx +++ b/app/[lng]/sales/(sales)/items/page.tsx @@ -35,11 +35,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - 패키지 정보 + 패키지 넘버 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신된 패키지 정보이며 PR 전 입찰, 견적에 사용되며 벤더 데이터, 문서와 연결됩니다. - </p> + </p> */} </div> </div> diff --git a/app/[lng]/sales/(sales)/project-gtc/page.tsx b/app/[lng]/sales/(sales)/project-gtc/page.tsx index 8e12a489..d5cb467a 100644 --- a/app/[lng]/sales/(sales)/project-gtc/page.tsx +++ b/app/[lng]/sales/(sales)/project-gtc/page.tsx @@ -31,12 +31,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Project GTC + 프로젝트 GTC 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 프로젝트별 GTC(General Terms and Conditions) 파일을 관리할 수 있습니다. 각 프로젝트마다 하나의 GTC 파일을 업로드할 수 있으며, 파일 업로드 시 기존 파일은 자동으로 교체됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/project-vendors/page.tsx b/app/[lng]/sales/(sales)/project-vendors/page.tsx index dcc66071..525cff07 100644 --- a/app/[lng]/sales/(sales)/project-vendors/page.tsx +++ b/app/[lng]/sales/(sales)/project-vendors/page.tsx @@ -36,14 +36,14 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 프로젝트 AVL 리스트 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 프로젝트 PQ를 통과한 벤더의 리스트를 보여줍니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/projects/page.tsx b/app/[lng]/sales/(sales)/projects/page.tsx index 0320f259..649dd56f 100644 --- a/app/[lng]/sales/(sales)/projects/page.tsx +++ b/app/[lng]/sales/(sales)/projects/page.tsx @@ -35,16 +35,16 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Project List from S-EDP + 수행 프로젝트 리스트 from S-EDP </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> S-EDP로부터 수신하는 프로젝트 리스트입니다. 향후 MDG로 전환됩니다.{" "} - {/* <span className="inline-flex items-center whitespace-nowrap"> + <span className="inline-flex items-center whitespace-nowrap"> <Ellipsis className="size-3" /> <span className="ml-1">버튼</span> </span> - 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} - </p> + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/rfq-tech/[id]/cbe/page.tsx b/app/[lng]/sales/(sales)/rfq-tech/[id]/cbe/page.tsx deleted file mode 100644 index 84379caf..00000000 --- a/app/[lng]/sales/(sales)/rfq-tech/[id]/cbe/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { searchParamsCBECache } from "@/lib/rfqs-tech/validations" -import { getCBE } from "@/lib/rfqs-tech/service" -import { CbeTable } from "@/lib/rfqs-tech/cbe-table/cbe-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqCBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsCBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getCBE({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Commercial Bid Evaluation - </h3> - <p className="text-sm text-muted-foreground"> - 초대된 협력업체에게 CBE를 보낼 수 있습니다. <br />"발행하기" 버튼을 통해 CBE를 전송하면 CBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <CbeTable promises={promises} rfqId={idAsNumber} /> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/rfq-tech/[id]/layout.tsx b/app/[lng]/sales/(sales)/rfq-tech/[id]/layout.tsx deleted file mode 100644 index 0bb62fe0..00000000 --- a/app/[lng]/sales/(sales)/rfq-tech/[id]/layout.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import { Metadata } from "next" -import Link from "next/link" -import { Separator } from "@/components/ui/separator" -import { SidebarNav } from "@/components/layout/sidebar-nav" -import { RfqViewWithItems } from "@/db/schema/rfq" -import { findRfqById } from "@/lib/rfqs-tech/service" -import { formatDate } from "@/lib/utils" -import { Button } from "@/components/ui/button" -import { ArrowLeft } from "lucide-react" - -export const metadata: Metadata = { - title: "Vendor Detail", -} - -export default async function RfqLayout({ - children, - params, -}: { - children: React.ReactNode - params: { lng: string, id: string } -}) { - - // 1) URL 파라미터에서 id 추출, Number로 변환 - const resolvedParams = await params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - // 2) DB에서 해당 협력업체 정보 조회 - const rfq: RfqViewWithItems | null = await findRfqById(idAsNumber) - - // 3) 사이드바 메뉴 - const sidebarNavItems = [ - { - title: "Matched Vendors", - href: `/${lng}/evcp/rfq-tech/${id}`, - }, - { - title: "TBE", - href: `/${lng}/evcp/rfq-tech/${id}/tbe`, - }, - { - title: "CBE", - href: `/${lng}/evcp/rfq-tech/${id}/cbe`, - }, - - ] - - return ( - <> - <div className="container py-6"> - <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> - <div className="hidden space-y-6 p-10 pb-16 md:block"> - <div className="flex items-center justify-end mb-4"> - <Link href={`/${lng}/evcp/rfq`} passHref> - <Button variant="ghost" className="flex items-center text-primary hover:text-primary/80 transition-colors p-0 h-auto"> - <ArrowLeft className="mr-1 h-4 w-4" /> - <span>RFQ 목록으로 돌아가기</span> - </Button> - </Link> - </div> - <div className="space-y-0.5"> - {/* 4) 협력업체 정보가 있으면 코드 + 이름 + "상세 정보" 표기 */} - <h2 className="text-2xl font-bold tracking-tight"> - {rfq - ? `${rfq.projectCode ?? ""} ${rfq.rfqCode ?? ""} 관리` - : "Loading RFQ..."} - </h2> - - <p className="text-muted-foreground"> - {rfq - ? `${rfq.description ?? ""} ${rfq.lines.map(line => line.itemCode).join(", ")}` - : ""} - </p> - <h3>Due Date:{rfq && rfq?.dueDate && <strong>{formatDate(rfq?.dueDate)}</strong>}</h3> - </div> - <Separator className="my-6" /> - <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> - <aside className="lg:w-64 flex-shrink-0"> - <SidebarNav items={sidebarNavItems} /> - </aside> - <div className="lg:w-[calc(100%-16rem)] overflow-auto">{children}</div> - </div> - </div> - </section> - </div> - </> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/rfq-tech/[id]/page.tsx b/app/[lng]/sales/(sales)/rfq-tech/[id]/page.tsx deleted file mode 100644 index 007270a1..00000000 --- a/app/[lng]/sales/(sales)/rfq-tech/[id]/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getMatchedVendors } from "@/lib/rfqs-tech/service" -import { searchParamsMatchedVCache } from "@/lib/rfqs-tech/validations" -import { MatchedVendorsTable } from "@/lib/rfqs-tech/vendor-table/vendors-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsMatchedVCache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getMatchedVendors({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Vendors - </h3> - <p className="text-sm text-muted-foreground"> - 등록된 협력업체 중에서 이 RFQ 아이템에 매칭되는 업체를 보여줍니다. <br/>"발행하기" 버튼을 통해 RFQ를 전송하면 첨부파일과 함께 RFQ 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <MatchedVendorsTable promises={promises} rfqId={idAsNumber}/> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/rfq-tech/[id]/tbe/page.tsx b/app/[lng]/sales/(sales)/rfq-tech/[id]/tbe/page.tsx deleted file mode 100644 index 4b226cdc..00000000 --- a/app/[lng]/sales/(sales)/rfq-tech/[id]/tbe/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getTBE } from "@/lib/rfqs-tech/service" -import { searchParamsTBECache } from "@/lib/rfqs-tech/validations" -import { TbeTable } from "@/lib/rfqs-tech/tbe-table/tbe-table" - -interface IndexPageProps { - // Next.js 13 App Router에서 기본으로 주어지는 객체들 - params: { - lng: string - id: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqTBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const id = resolvedParams.id - - const idAsNumber = Number(id) - - // 2) SearchParams 파싱 (Zod) - // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 - const searchParams = await props.searchParams - const search = searchParamsTBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getTBE({ - ...search, - filters: validFilters, - }, - idAsNumber) - ]) - - // 4) 렌더링 - return ( - <div className="space-y-6"> - <div> - <h3 className="text-lg font-medium"> - Technical Bid Evaluation - </h3> - <p className="text-sm text-muted-foreground"> - 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/>"발행하기" 버튼을 통해 TBE를 전송하면 첨부파일과 함께 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - <Separator /> - <div> - <TbeTable promises={promises} rfqId={idAsNumber}/> - </div> - </div> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/rfq-tech/page.tsx b/app/[lng]/sales/(sales)/rfq-tech/page.tsx deleted file mode 100644 index f35b3632..00000000 --- a/app/[lng]/sales/(sales)/rfq-tech/page.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import * as React from "react" -import { type SearchParams } from "@/types/table" - -import { getValidFilters } from "@/lib/data-table" -import { Skeleton } from "@/components/ui/skeleton" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" -import { Shell } from "@/components/shell" - -import { searchParamsCache } from "@/lib/rfqs-tech/validations" -import { getRfqs, getRfqStatusCounts } from "@/lib/rfqs-tech/service" -import { RfqsTable } from "@/lib/rfqs-tech/table/rfqs-table" -import { getAllOffshoreItems } from "@/lib/items-tech/service" - -interface RfqPageProps { - searchParams: Promise<SearchParams>; - title: string; - description: string; -} - -export default async function RfqPage({ - searchParams, - title = "기술영업 해양 RFQ", - description = "기술영업 해양 RFQ를 등록하고 관리할 수 있습니다." -}: RfqPageProps) { - const search = searchParamsCache.parse(await searchParams) - - const validFilters = getValidFilters(search.filters) - - const promises = Promise.all([ - getRfqs({ - ...search, - filters: validFilters, - }), - getRfqStatusCounts(), - getAllOffshoreItems() - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - {title} - </h2> - <p className="text-muted-foreground"> - {description} - </p> - </div> - </div> - </div> - - <React.Suspense fallback={<Skeleton className="h-7 w-52" />}> - {/* <DateRangePicker - triggerSize="sm" - triggerClassName="ml-auto w-56 sm:w-60" - align="end" - shallow={false} - /> */} - </React.Suspense> - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <RfqsTable promises={promises} /> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/settings/layout.tsx b/app/[lng]/sales/(sales)/settings/layout.tsx index 6f373567..6c380919 100644 --- a/app/[lng]/sales/(sales)/settings/layout.tsx +++ b/app/[lng]/sales/(sales)/settings/layout.tsx @@ -46,10 +46,10 @@ export default async function SettingsLayout({ <section className="overflow-hidden rounded-[0.5rem] border bg-background shadow"> <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> - <h2 className="text-2xl font-bold tracking-tight">Settings</h2> - <p className="text-muted-foreground"> + <h2 className="text-2xl font-bold tracking-tight">설정</h2> + {/* <p className="text-muted-foreground"> Manage your account settings and preferences. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/sales/(sales)/settings/page.tsx b/app/[lng]/sales/(sales)/settings/page.tsx index a6eaac90..eba5e948 100644 --- a/app/[lng]/sales/(sales)/settings/page.tsx +++ b/app/[lng]/sales/(sales)/settings/page.tsx @@ -6,10 +6,10 @@ export default function SettingsAccountPage() { <div className="space-y-6"> <div> <h3 className="text-lg font-medium">Account</h3> - <p className="text-sm text-muted-foreground"> + {/* <p className="text-sm text-muted-foreground"> Update your account settings. Set your preferred language and timezone. - </p> + </p> */} </div> <Separator /> <AccountForm /> diff --git a/app/[lng]/sales/(sales)/system/layout.tsx b/app/[lng]/sales/(sales)/system/layout.tsx index 7e8f69d0..2776ed8b 100644 --- a/app/[lng]/sales/(sales)/system/layout.tsx +++ b/app/[lng]/sales/(sales)/system/layout.tsx @@ -59,9 +59,9 @@ export default async function SettingsLayout({ <div className="hidden space-y-6 p-10 pb-16 md:block"> <div className="space-y-0.5"> <h2 className="text-2xl font-bold tracking-tight">시스템 설정</h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 사용자, 롤, 접근 권한을 관리하세요. - </p> + </p> */} </div> <Separator className="my-6" /> <div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0"> diff --git a/app/[lng]/sales/(sales)/tbe-tech/page.tsx b/app/[lng]/sales/(sales)/tbe-tech/page.tsx deleted file mode 100644 index 17b01ce2..00000000 --- a/app/[lng]/sales/(sales)/tbe-tech/page.tsx +++ /dev/null @@ -1,67 +0,0 @@ -import { type SearchParams } from "@/types/table" -import { getValidFilters } from "@/lib/data-table" -import { getAllTBE } from "@/lib/rfqs-tech/service" -import { searchParamsTBECache } from "@/lib/rfqs-tech/validations" -import { AllTbeTable } from "@/lib/tbe-tech/table/tbe-table" -import * as React from "react" -import { Shell } from "@/components/shell" -import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" - -interface IndexPageProps { - params: { - lng: string - } - searchParams: Promise<SearchParams> -} - -export default async function RfqTBEPage(props: IndexPageProps) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - - // URL 쿼리 파라미터에서 타입 추출 - const searchParams = await props.searchParams - - // SearchParams 파싱 (Zod) - const search = searchParamsTBECache.parse(searchParams) - const validFilters = getValidFilters(search.filters) - - // 현재 선택된 타입의 데이터 로드 - const promises = Promise.all([ - getAllTBE({ - ...search, - filters: validFilters, - }) - ]) - - return ( - <Shell className="gap-2"> - <div className="flex items-center justify-between space-y-2"> - <div className="flex items-center justify-between space-y-2"> - <div> - <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation - </h2> - <p className="text-muted-foreground"> - 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/> - 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> - </div> - </div> - </div> - - <React.Suspense - fallback={ - <DataTableSkeleton - columnCount={6} - searchableColumnCount={1} - filterableColumnCount={2} - cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]} - shrinkZero - /> - } - > - <AllTbeTable promises={promises}/> - </React.Suspense> - </Shell> - ) -}
\ No newline at end of file diff --git a/app/[lng]/sales/(sales)/tbe/page.tsx b/app/[lng]/sales/(sales)/tbe/page.tsx index 1a7fdf86..211cf376 100644 --- a/app/[lng]/sales/(sales)/tbe/page.tsx +++ b/app/[lng]/sales/(sales)/tbe/page.tsx @@ -67,12 +67,12 @@ export default async function RfqTBEPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Technical Bid Evaluation + TBE 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 초대된 협력업체에게 TBE를 보낼 수 있습니다. <br/> 체크박스 선택을 하면 초대 버튼이 활성화됩니다. 버튼 클릭 후 첨부파일을 함께 전송하면 TBE 내용이 메일로 전달되고 eVCP에도 협력업체가 입력할 수 있게 자동 생성됩니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/tech-project-avl/page.tsx b/app/[lng]/sales/(sales)/tech-project-avl/page.tsx index d942c5c5..3a86f840 100644 --- a/app/[lng]/sales/(sales)/tech-project-avl/page.tsx +++ b/app/[lng]/sales/(sales)/tech-project-avl/page.tsx @@ -48,14 +48,14 @@ export default async function AcceptedQuotationsPage({ <h2 className="text-2xl font-bold tracking-tight">
승인된 견적서(해양TOP,HULL)
</h2>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
기술영업 승인 견적서에 대한 요약 정보를 확인하고{" "}
<span className="inline-flex items-center whitespace-nowrap">
<Ellipsis className="size-3" />
<span className="ml-1">버튼</span>
</span>
을 통해 RFQ 코드, 설명, 업체명, 업체 코드 등의 상세 정보를 확인할 수 있습니다.
- </p>
+ </p> */}
</div>
</div>
</div>
diff --git a/app/[lng]/sales/(sales)/tech-vendor-candidates/page.tsx b/app/[lng]/sales/(sales)/tech-vendor-candidates/page.tsx index 3923863a..5a9f150f 100644 --- a/app/[lng]/sales/(sales)/tech-vendor-candidates/page.tsx +++ b/app/[lng]/sales/(sales)/tech-vendor-candidates/page.tsx @@ -36,11 +36,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Candidates Management + 발굴업체 등록 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 수집한 협력업체 후보를 등록하고 초대 메일을 송부할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/app/[lng]/sales/(sales)/vendor-candidates/page.tsx b/app/[lng]/sales/(sales)/vendor-candidates/page.tsx index a6e00b1b..f4bee95b 100644 --- a/app/[lng]/sales/(sales)/vendor-candidates/page.tsx +++ b/app/[lng]/sales/(sales)/vendor-candidates/page.tsx @@ -36,11 +36,11 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div> <h2 className="text-2xl font-bold tracking-tight"> - Vendor Candidates Management + 발굴업체 등록 관리 </h2> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 수집한 협력업체 후보를 등록하고 초대 메일을 송부할 수 있습니다. - </p> + </p> */} </div> </div> </div> diff --git a/components/bidding-projects/bid-projects-container.tsx b/components/bidding-projects/bid-projects-container.tsx index cae01b04..9890a959 100644 --- a/components/bidding-projects/bid-projects-container.tsx +++ b/components/bidding-projects/bid-projects-container.tsx @@ -69,9 +69,9 @@ export function BidProjectsContainer({ <h2 className="text-2xl font-bold tracking-tight">견적 프로젝트 리스트</h2> <InformationButton pagePath="evcp/bid-projects" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 데이터 출처 - SHIP/HULL: From ECC(S-ERP), TOP: From NONSAP - </p> + </p> */} </div> {/* 오른쪽: 프로젝트 타입 드롭다운 */} diff --git a/components/document-lists/vendor-doc-list-client.tsx b/components/document-lists/vendor-doc-list-client.tsx index 2bd7d996..61a85048 100644 --- a/components/document-lists/vendor-doc-list-client.tsx +++ b/components/document-lists/vendor-doc-list-client.tsx @@ -61,15 +61,15 @@ export default function VendorDocumentListClient({ {/* 왼쪽: 타이틀 & 설명 */} <div> <div className="flex items-center gap-2"> - <h2 className="text-2xl font-bold tracking-tight">Vendor Document List</h2> + <h2 className="text-2xl font-bold tracking-tight">협력업체 문서 리스트 관리</h2> <InformationButton pagePath="partners/document-list" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> {projectType === "ship" ? "삼성중공업 문서시스템으로부터 목록을 가져오고 문서 파일을 등록하여 삼성중공업으로 전달할 수 있습니다." : "문서리스트와 이슈스테이지를 생성하고 관리할 수 있으며 문서 파일을 등록하여 삼성중공업으로 전달할 수 있습니다." } - </p> + </p> */} </div> {/* 오른쪽: ProjectSwitcher */} diff --git a/components/documents/vendor-docs.client.tsx b/components/documents/vendor-docs.client.tsx index ebc30b83..15caf57c 100644 --- a/components/documents/vendor-docs.client.tsx +++ b/components/documents/vendor-docs.client.tsx @@ -56,13 +56,13 @@ export default function VendorDocumentsClient({ {/* 왼쪽: 타이틀 & 설명 */} <div> <div className="flex items-center gap-2"> - <h2 className="text-2xl font-bold tracking-tight">Vendor Documents</h2> + <h2 className="text-2xl font-bold tracking-tight">협력업체 문서 관리</h2> <InformationButton pagePath="partners/documents" /> </div> - <p className="text-muted-foreground"> + {/* <p className="text-muted-foreground"> 문서리스트를 확인하고 리스트에 맞게 문서를 업로드하고 관리할 수 있으며 삼성중공업으로 전달할 수 있습니다. - </p> + </p> */} </div> {/* 오른쪽: ProjectSwitcher */} diff --git a/components/items-tech/item-tech-container.tsx b/components/items-tech/item-tech-container.tsx index 260f3e64..dedec70b 100644 --- a/components/items-tech/item-tech-container.tsx +++ b/components/items-tech/item-tech-container.tsx @@ -60,9 +60,9 @@ export function ItemTechContainer({ <h2 className="text-2xl font-bold tracking-tight">자재 관리</h2>
<InformationButton pagePath="evcp/items-tech" />
</div>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
조선 및 해양 자재를 등록하고 관리할 수 있습니다.
- </p>
+ </p> */}
</div>
{/* 오른쪽: 아이템 타입 드롭다운 */}
diff --git a/components/tech-vendor-possible-items/tech-vendor-possible-items-container.tsx b/components/tech-vendor-possible-items/tech-vendor-possible-items-container.tsx index 90b28176..a2e0e9b6 100644 --- a/components/tech-vendor-possible-items/tech-vendor-possible-items-container.tsx +++ b/components/tech-vendor-possible-items/tech-vendor-possible-items-container.tsx @@ -64,9 +64,9 @@ export function TechVendorPossibleItemsContainer({ {/* 왼쪽: 타이틀 & 설명 */}
<div>
<h2 className="text-2xl font-bold tracking-tight">기술영업 벤더 아이템 관리</h2>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
기술영업 벤더별 가능 아이템을 관리합니다.
- </p>
+ </p> */}
</div>
{/* 오른쪽: 벤더 타입 드롭다운 */}
diff --git a/components/tech-vendors/tech-vendor-container.tsx b/components/tech-vendors/tech-vendor-container.tsx index 505a2ea4..0b5b436d 100644 --- a/components/tech-vendors/tech-vendor-container.tsx +++ b/components/tech-vendors/tech-vendor-container.tsx @@ -65,9 +65,9 @@ export function TechVendorContainer({ <h2 className="text-2xl font-bold tracking-tight">기술영업 벤더 리스트</h2>
<InformationButton pagePath="evcp/tech-vendors" />
</div>
- <p className="text-muted-foreground">
+ {/* <p className="text-muted-foreground">
기술영업 벤더에 대한 요약 정보를 확인하고 관리할 수 있습니다.
- </p>
+ </p> */}
</div>
{/* 오른쪽: 벤더 타입 드롭다운 */}
|
