blob: 8a45f529b71789b668be64a472b98f0d34a93d7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
"use client"
import * as React from "react"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Badge } from "@/components/ui/badge"
import { ScrollArea } from "@/components/ui/scroll-area"
import { formatDate } from "@/lib/utils"
interface ProjectInfoTabProps {
quotation: {
id: number
rfq: {
id: number
rfqCode: string | null
materialCode: string | null
dueDate: Date | null
status: string | null
remark: string | null
biddingProject?: {
id: number
pspid: string | null
projNm: string | null
sector: string | null
projMsrm: string | null
ptypeNm: string | null
} | null
createdByUser?: {
id: number
name: string | null
email: string | null
} | null
} | null
vendor: {
id: number
vendorName: string
vendorCode: string | null
} | null
}
}
export function ProjectInfoTab({ quotation }: ProjectInfoTabProps) {
const rfq = quotation.rfq
console.log("rfq: ", rfq)
if (!rfq) {
return (
<div className="flex items-center justify-center h-full">
<div className="text-center">
<h3 className="text-lg font-medium">RFQ 정보를 찾을 수 없습니다</h3>
<p className="text-sm text-muted-foreground mt-1">
연결된 RFQ 정보가 없습니다.
</p>
</div>
</div>
)
}
return (
<ScrollArea className="h-full">
<div className="space-y-6 p-1">
{/* RFQ 기본 정보 */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
RFQ 기본 정보
<Badge variant="outline">{rfq.rfqCode || "미할당"}</Badge>
</CardTitle>
<CardDescription>
요청서 기본 정보 및 자재 정보
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">RFQ 번호</div>
<div className="text-sm">{rfq.rfqCode || "미할당"}</div>
</div>
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">자재 그룹</div>
<div className="text-sm">{rfq.materialCode || "N/A"}</div>
</div>
{/* <div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">마감일</div>
<div className="text-sm">
{rfq.dueDate ? formatDate(rfq.dueDate) : "N/A"}
</div>
</div> */}
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">RFQ 상태</div>
<div className="text-sm">{rfq.status || "N/A"}</div>
</div>
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">담당자</div>
<div className="text-sm">{rfq.createdByUser?.name || "N/A"}</div>
</div>
</div>
{rfq.remark && (
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">비고</div>
<div className="text-sm p-3 bg-muted rounded-md">{rfq.remark}</div>
</div>
)}
</CardContent>
</Card>
{/* 프로젝트 기본 정보 */}
{rfq.biddingProject && (
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
프로젝트 기본 정보
<Badge variant="outline">{rfq.biddingProject.pspid || "N/A"}</Badge>
</CardTitle>
<CardDescription>
연결된 프로젝트의 기본 정보
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">프로젝트 ID</div>
<div className="text-sm">{rfq.biddingProject.pspid || "N/A"}</div>
</div>
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">프로젝트명</div>
<div className="text-sm">{rfq.biddingProject.projNm || "N/A"}</div>
</div>
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">프로젝트 섹터</div>
<div className="text-sm">{rfq.biddingProject.sector || "N/A"}</div>
</div>
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">프로젝트 규모</div>
<div className="text-sm">{rfq.biddingProject.projMsrm || "N/A"}</div>
</div>
<div className="space-y-2">
<div className="text-sm font-medium text-muted-foreground">프로젝트 타입</div>
<div className="text-sm">{rfq.biddingProject.ptypeNm || "N/A"}</div>
</div>
</div>
</CardContent>
</Card>
)}
</div>
</ScrollArea>
)
}
|