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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
|
"use client"
import { useFormContext, useFieldArray } from "react-hook-form"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import { Checkbox } from "@/components/ui/checkbox"
import { Button } from "@/components/ui/button"
import { Calendar } from "@/components/ui/calendar"
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"
import { Badge } from "@/components/ui/badge"
import { Label } from "@/components/ui/label"
import { CalendarIcon, Eye, Calculator, AlertCircle } from "lucide-react"
import { format } from "date-fns"
import { cn, formatCurrency } from "@/lib/utils"
import { useState } from "react"
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog"
interface QuotationItemsTableProps {
prItems: any[]
}
export default function QuotationItemsTable({ prItems }: QuotationItemsTableProps) {
const { control, register, setValue, watch } = useFormContext()
const { fields } = useFieldArray({
control,
name: "quotationItems"
})
const [selectedItem, setSelectedItem] = useState<any>(null)
const [showDetail, setShowDetail] = useState(false)
const currency = watch("vendorCurrency") || "USD"
const quotationItems = watch("quotationItems")
// 단가 * 수량 계산
const calculateTotal = (index: number) => {
const item = quotationItems[index]
const prItem = prItems[index]
if (item && prItem) {
const total = (item.unitPrice || 0) * (prItem.quantity || 0)
setValue(`quotationItems.${index}.totalPrice`, total)
}
}
// 할인 적용
const applyDiscount = (index: number) => {
const item = quotationItems[index]
const prItem = prItems[index]
if (item && prItem && item.discountRate) {
const originalTotal = (item.unitPrice || 0) * (prItem.quantity || 0)
const discountAmount = originalTotal * (item.discountRate / 100)
const finalTotal = originalTotal - discountAmount
setValue(`quotationItems.${index}.totalPrice`, finalTotal)
}
}
const totalAmount = quotationItems?.reduce(
(sum: number, item: any) => sum + (item.totalPrice || 0), 0
) || 0
// 상세 정보 다이얼로그
const ItemDetailDialog = ({ item, prItem, index }: any) => (
<Dialog open={showDetail} onOpenChange={setShowDetail}>
<DialogContent className="max-w-3xl max-h-[80vh] overflow-y-auto">
<DialogHeader>
<DialogTitle>견적 상세 정보</DialogTitle>
<DialogDescription>
{prItem.materialCode} - {prItem.materialDescription}
</DialogDescription>
</DialogHeader>
<div className="space-y-4">
{/* PR 아이템 정보 */}
<Card>
<CardHeader className="pb-3">
<CardTitle className="text-base">PR 아이템 정보</CardTitle>
</CardHeader>
<CardContent className="grid grid-cols-2 gap-4">
<div>
<Label className="text-xs text-muted-foreground">PR 번호</Label>
<p className="font-medium">{prItem.prNo}</p>
</div>
<div>
<Label className="text-xs text-muted-foreground">자재 코드</Label>
<p className="font-medium">{prItem.materialCode}</p>
</div>
<div>
<Label className="text-xs text-muted-foreground">수량</Label>
<p className="font-medium">{prItem.quantity} {prItem.uom}</p>
</div>
<div>
<Label className="text-xs text-muted-foreground">요청 납기일</Label>
<p className="font-medium">
{prItem.deliveryDate ? format(new Date(prItem.deliveryDate), "yyyy-MM-dd") : '-'}
</p>
</div>
{prItem.specNo && (
<div>
<Label className="text-xs text-muted-foreground">스펙 번호</Label>
<p className="font-medium">{prItem.specNo}</p>
</div>
)}
{prItem.trackingNo && (
<div>
<Label className="text-xs text-muted-foreground">추적 번호</Label>
<p className="font-medium">{prItem.trackingNo}</p>
</div>
)}
</CardContent>
</Card>
{/* 제조사 정보 */}
<Card>
<CardHeader className="pb-3">
<CardTitle className="text-base">제조사 정보</CardTitle>
</CardHeader>
<CardContent className="space-y-3">
<div className="grid grid-cols-2 gap-4">
<div className="space-y-2">
<Label htmlFor={`manufacturer-${index}`}>제조사</Label>
<Input
id={`manufacturer-${index}`}
{...register(`quotationItems.${index}.manufacturer`)}
placeholder="제조사 입력"
/>
</div>
<div className="space-y-2">
<Label htmlFor={`manufacturerCountry-${index}`}>제조국</Label>
<Input
id={`manufacturerCountry-${index}`}
{...register(`quotationItems.${index}.manufacturerCountry`)}
placeholder="제조국 입력"
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor={`modelNo-${index}`}>모델 번호</Label>
<Input
id={`modelNo-${index}`}
{...register(`quotationItems.${index}.modelNo`)}
placeholder="모델 번호 입력"
/>
</div>
</CardContent>
</Card>
{/* 기술 준수 및 대안 */}
<Card>
<CardHeader className="pb-3">
<CardTitle className="text-base">기술 사양</CardTitle>
</CardHeader>
<CardContent className="space-y-3">
<div className="flex items-center space-x-2">
<Checkbox
id={`technicalCompliance-${index}`}
checked={watch(`quotationItems.${index}.technicalCompliance`)}
onCheckedChange={(checked) =>
setValue(`quotationItems.${index}.technicalCompliance`, checked)
}
/>
<Label htmlFor={`technicalCompliance-${index}`}>
기술 사양 준수
</Label>
</div>
{!watch(`quotationItems.${index}.technicalCompliance`) && (
<div className="space-y-2">
<Label htmlFor={`alternativeProposal-${index}`}>
대안 제안 <span className="text-red-500">*</span>
</Label>
<Textarea
id={`alternativeProposal-${index}`}
{...register(`quotationItems.${index}.alternativeProposal`)}
placeholder="기술 사양을 준수하지 않는 경우 대안을 제시해주세요"
className="min-h-[100px]"
/>
</div>
)}
<div className="space-y-2">
<Label htmlFor={`deviationReason-${index}`}>편차 사유</Label>
<Textarea
id={`deviationReason-${index}`}
{...register(`quotationItems.${index}.deviationReason`)}
placeholder="요구사항과 다른 부분이 있는 경우 사유를 입력하세요"
className="min-h-[80px]"
/>
</div>
</CardContent>
</Card>
{/* 할인 정보 */}
<Card>
<CardHeader className="pb-3">
<CardTitle className="text-base">할인 정보</CardTitle>
</CardHeader>
<CardContent className="space-y-3">
<div className="grid grid-cols-2 gap-4">
<div className="space-y-2">
<Label htmlFor={`discountRate-${index}`}>할인율 (%)</Label>
<Input
id={`discountRate-${index}`}
type="number"
step="0.01"
{...register(`quotationItems.${index}.discountRate`, { valueAsNumber: true })}
onChange={(e) => {
setValue(`quotationItems.${index}.discountRate`, parseFloat(e.target.value))
applyDiscount(index)
}}
placeholder="0.00"
/>
</div>
<div className="space-y-2">
<Label>할인 금액</Label>
<div className="h-10 px-3 py-2 border rounded-md bg-muted">
{formatCurrency(
(watch(`quotationItems.${index}.unitPrice`) || 0) *
(prItem.quantity || 0) *
((watch(`quotationItems.${index}.discountRate`) || 0) / 100),
currency
)}
</div>
</div>
</div>
</CardContent>
</Card>
{/* 비고 */}
<Card>
<CardHeader className="pb-3">
<CardTitle className="text-base">비고</CardTitle>
</CardHeader>
<CardContent>
<Textarea
{...register(`quotationItems.${index}.itemRemark`)}
placeholder="아이템별 비고사항을 입력하세요"
className="min-h-[100px]"
/>
</CardContent>
</Card>
</div>
</DialogContent>
</Dialog>
)
return (
<Card>
<CardHeader>
<div className="flex items-center justify-between">
<div>
<CardTitle>견적 품목</CardTitle>
<CardDescription>
각 PR 아이템에 대한 견적 단가와 정보를 입력하세요
</CardDescription>
</div>
<div className="text-right">
<p className="text-sm text-muted-foreground">총 견적금액</p>
<p className="text-2xl font-bold text-primary">
{formatCurrency(totalAmount, currency)}
</p>
</div>
</div>
</CardHeader>
<CardContent>
<div className="overflow-x-auto">
<Table>
<TableHeader>
<TableRow>
<TableHead className="w-[50px]">No</TableHead>
<TableHead className="w-[100px]">PR No</TableHead>
<TableHead className="min-w-[150px]">자재코드</TableHead>
<TableHead className="min-w-[200px]">자재설명</TableHead>
<TableHead className="text-right w-[100px]">수량</TableHead>
<TableHead className="w-[150px]">단가</TableHead>
<TableHead className="text-right w-[150px]">총액</TableHead>
<TableHead className="w-[150px]">납기일</TableHead>
<TableHead className="w-[100px]">리드타임</TableHead>
<TableHead className="w-[80px]">작업</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{fields.map((field, index) => {
const prItem = prItems[index]
const quotationItem = quotationItems[index]
const isMajor = prItem?.majorYn
return (
<TableRow key={field.id} className={isMajor ? "bg-yellow-50" : ""}>
<TableCell>
<div className="flex items-center gap-2">
{prItem?.rfqItem || index + 1}
{isMajor && (
<Badge variant="secondary" className="text-xs">
주요
</Badge>
)}
</div>
</TableCell>
<TableCell className="font-mono text-xs">
{prItem?.prNo}
</TableCell>
<TableCell className="font-mono text-xs">
{prItem?.materialCode}
</TableCell>
<TableCell>
<div className="max-w-[200px]">
<p className="truncate text-sm" title={prItem?.materialDescription}>
{prItem?.materialDescription}
</p>
{prItem?.size && (
<p className="text-xs text-muted-foreground">
사이즈: {prItem.size}
</p>
)}
</div>
</TableCell>
<TableCell className="text-right">
{prItem?.quantity} {prItem?.uom}
</TableCell>
<TableCell>
<div className="flex items-center gap-1">
<Input
type="number"
step="0.01"
{...register(`quotationItems.${index}.unitPrice`, { valueAsNumber: true })}
onChange={(e) => {
setValue(`quotationItems.${index}.unitPrice`, parseFloat(e.target.value))
calculateTotal(index)
}}
className="w-[120px]"
placeholder="0.00"
/>
<span className="text-xs text-muted-foreground">
{currency}
</span>
</div>
</TableCell>
<TableCell className="text-right font-medium">
{formatCurrency(quotationItem?.totalPrice || 0, currency)}
</TableCell>
<TableCell>
<Popover>
<PopoverTrigger asChild>
<Button
variant="outline"
size="sm"
className={cn(
"w-[130px] justify-start text-left font-normal",
!quotationItem?.vendorDeliveryDate && "text-muted-foreground"
)}
>
<CalendarIcon className="mr-2 h-3 w-3" />
{quotationItem?.vendorDeliveryDate
? format(quotationItem.vendorDeliveryDate, "yyyy-MM-dd")
: "선택"}
</Button>
</PopoverTrigger>
<PopoverContent className="w-auto p-0" align="start">
<Calendar
mode="single"
selected={quotationItem?.vendorDeliveryDate}
onSelect={(date) => setValue(`quotationItems.${index}.vendorDeliveryDate`, date)}
initialFocus
/>
</PopoverContent>
</Popover>
{prItem?.deliveryDate && quotationItem?.vendorDeliveryDate &&
new Date(quotationItem.vendorDeliveryDate) > new Date(prItem.deliveryDate) && (
<div className="mt-1">
<Badge variant="destructive" className="text-xs">
지연
</Badge>
</div>
)}
</TableCell>
<TableCell>
<Input
type="number"
{...register(`quotationItems.${index}.leadTime`, { valueAsNumber: true })}
className="w-[80px]"
placeholder="일"
/>
</TableCell>
<TableCell>
<Button
type="button"
variant="ghost"
size="sm"
onClick={() => {
setSelectedItem({ item: quotationItem, prItem, index })
setShowDetail(true)
}}
>
<Eye className="h-4 w-4" />
</Button>
</TableCell>
</TableRow>
)
})}
</TableBody>
</Table>
</div>
{/* 총액 요약 */}
<div className="mt-4 flex justify-end">
<Card className="w-[400px]">
<CardContent className="pt-4">
<div className="space-y-2">
<div className="flex justify-between text-sm">
<span className="text-muted-foreground">소계</span>
<span>{formatCurrency(totalAmount, currency)}</span>
</div>
<div className="flex justify-between text-sm">
<span className="text-muted-foreground">통화</span>
<span>{currency}</span>
</div>
<div className="border-t pt-2">
<div className="flex justify-between">
<span className="font-semibold">총 견적금액</span>
<span className="text-xl font-bold text-primary">
{formatCurrency(totalAmount, currency)}
</span>
</div>
</div>
</div>
</CardContent>
</Card>
</div>
</CardContent>
{/* 상세 다이얼로그 */}
{selectedItem && (
<ItemDetailDialog
item={selectedItem.item}
prItem={selectedItem.prItem}
index={selectedItem.index}
/>
)}
</Card>
)
}
|