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
|
"use client";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { FileText, Download, CheckCircle, XCircle, Clock, RefreshCw } from "lucide-react";
import { toast } from "sonner";
import type { VendorRegularRegistration } from "@/config/vendorRegularRegistrationsColumnsConfig";
import {
documentStatusColumns,
} from "@/config/vendorRegularRegistrationsColumnsConfig";
interface DocumentStatusDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
registration: VendorRegularRegistration | null;
onRefresh?: () => void;
isVendorUser?: boolean;
}
const StatusIcon = ({ status }: { status: string | boolean }) => {
if (typeof status === "boolean") {
return status ? (
<CheckCircle className="w-4 h-4 text-green-600" />
) : (
<XCircle className="w-4 h-4 text-red-500" />
);
}
switch (status) {
case "completed":
return <CheckCircle className="w-4 h-4 text-green-600" />;
case "reviewing":
return <Clock className="w-4 h-4 text-yellow-600" />;
case "not_submitted":
default:
return <XCircle className="w-4 h-4 text-red-500" />;
}
};
const StatusBadge = ({ status }: { status: string | boolean }) => {
if (typeof status === "boolean") {
return (
<Badge variant={status ? "default" : "destructive"}>
{status ? "제출완료" : "미제출"}
</Badge>
);
}
const statusConfig = {
completed: { label: "완료", variant: "default" as const },
reviewing: { label: "검토중", variant: "secondary" as const },
not_submitted: { label: "미제출", variant: "destructive" as const },
};
const config = statusConfig[status as keyof typeof statusConfig] || statusConfig.not_submitted;
return <Badge variant={config.variant}>{config.label}</Badge>;
};
export function DocumentStatusDialog({
open,
onOpenChange,
registration,
onRefresh,
isVendorUser = false,
}: DocumentStatusDialogProps) {
if (!registration) return null;
// 파일 다운로드 핸들러
const handleFileDownload = async (docKey: string, fileIndex: number = 0) => {
try {
console.log(`🔍 파일 다운로드 시도:`, {
docKey,
fileIndex,
allDocumentFiles: registration.documentFiles,
registrationId: registration.id,
registrationKeys: Object.keys(registration),
fullRegistration: registration
});
//isvendoruser인 경우는 실사 결과 파일 다운로드 불가능
if (isVendorUser && docKey === "auditResult") {
toast.error("실사 결과 파일은 다운로드할 수 없습니다.");
return;
}
// documentFiles가 없는 경우 처리
if (!registration.documentFiles) {
console.error(`❌ documentFiles가 없음:`, {
registration,
hasDocumentFiles: !!registration.documentFiles,
registrationKeys: Object.keys(registration)
});
toast.error("문서 파일 정보를 찾을 수 없습니다. 페이지를 새로고침 해주세요.");
return;
}
const files = registration.documentFiles[docKey as keyof typeof registration.documentFiles];
console.log(`📂 ${docKey} 파일 목록:`, files);
if (!files || files.length === 0) {
console.warn(`❌ ${docKey}에 파일이 없음:`, { files, length: files?.length });
toast.error("다운로드할 파일이 없습니다.");
return;
}
const file = files[fileIndex];
console.log(`📄 선택된 파일 (index ${fileIndex}):`, file);
if (!file) {
console.warn(`❌ 파일 인덱스 ${fileIndex}에 파일이 없음`);
toast.error("파일을 찾을 수 없습니다.");
return;
}
// 파일 객체의 모든 속성 확인
console.log(`🔍 파일 객체 전체 속성:`, Object.keys(file));
console.log(`🔍 파일 상세 정보:`, {
filePath: file.filePath,
path: file.path,
originalFileName: file.originalFileName,
fileName: file.fileName,
name: file.name,
fullObject: file
});
// filePath와 fileName 추출
const filePath = file.filePath || file.path;
const fileName = file.originalFileName || file.fileName || file.name;
console.log(`📝 추출된 파일 정보:`, { filePath, fileName });
if (!filePath || !fileName) {
console.error(`❌ 파일 정보 누락:`, {
filePath,
fileName,
fileObject: file,
availableKeys: Object.keys(file)
});
toast.error("파일 정보가 올바르지 않습니다.");
return;
}
console.log(`📥 파일 다운로드 시작:`, { filePath, fileName, docKey });
// downloadFile 함수를 동적으로 import하여 파일 다운로드
const { downloadFile } = await import('@/lib/file-download');
const result = await downloadFile(filePath, fileName, {
showToast: true,
onError: (error: any) => {
console.error("파일 다운로드 오류:", error);
toast.error(`파일 다운로드 실패: ${error}`);
},
onSuccess: (fileName: string, fileSize?: number) => {
console.log(`✅ 파일 다운로드 성공:`, { fileName, fileSize });
}
});
if (!result.success) {
console.error("파일 다운로드 실패:", result.error);
}
} catch (error) {
console.error("파일 다운로드 중 오류 발생:", error);
toast.error("파일 다운로드 중 오류가 발생했습니다.");
}
};
// 기본계약 파일 다운로드 핸들러
const handleContractDownload = async (contractIndex: number) => {
try {
if (!registration.basicContracts || registration.basicContracts.length === 0) {
toast.error("다운로드할 계약이 없습니다.");
return;
}
const contract = registration.basicContracts[contractIndex];
if (!contract) {
toast.error("계약을 찾을 수 없습니다.");
return;
}
if (contract.status !== "VENDOR_SIGNED") {
toast.error("완료된 계약서만 다운로드할 수 있습니다.");
return;
}
// 서명된 계약서 파일 정보 확인
const filePath = contract.filePath;
const fileName = contract.fileName || `${contract.templateName || '기본계약'}_${registration.companyName}.docx`;
if (!filePath) {
toast.error("계약서 파일을 찾을 수 없습니다.");
return;
}
console.log(`📥 기본계약 다운로드 시작:`, {
filePath,
fileName,
templateName: contract.templateName
});
// downloadFile 함수를 사용하여 서명된 계약서 다운로드
const { downloadFile } = await import('@/lib/file-download');
const result = await downloadFile(filePath, fileName, {
showToast: true,
onError: (error: any) => {
console.error("기본계약 다운로드 오류:", error);
toast.error(`기본계약 다운로드 실패: ${error}`);
},
onSuccess: (fileName: string, fileSize?: number) => {
console.log(`✅ 기본계약 다운로드 성공:`, { fileName, fileSize });
}
});
if (!result.success) {
console.error("기본계약 다운로드 실패:", result.error);
}
} catch (error) {
console.error("기본계약 다운로드 중 오류 발생:", error);
toast.error("기본계약 다운로드 중 오류가 발생했습니다.");
}
};
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-4xl max-h-[80vh] overflow-y-auto">
<DialogHeader>
<DialogTitle className="flex items-center justify-between">
<div className="flex items-center gap-2">
<FileText className="w-5 h-5" />
문서/자료 접수 현황 - {registration.companyName}
</div>
{onRefresh && (
<Button
variant="outline"
size="sm"
onClick={onRefresh}
className="flex items-center gap-2"
>
<RefreshCw className="w-4 h-4" />
새로고침
</Button>
)}
</DialogTitle>
</DialogHeader>
<div className="space-y-6">
{/* 기본 정보 */}
<div className="grid grid-cols-2 gap-4 p-4 bg-gray-50 rounded-lg">
<div>
<span className="text-sm font-medium text-gray-600">업체명:</span>
<span className="ml-2">{registration.companyName}</span>
</div>
<div>
<span className="text-sm font-medium text-gray-600">사업자번호:</span>
<span className="ml-2">{registration.businessNumber}</span>
</div>
<div>
<span className="text-sm font-medium text-gray-600">대표자:</span>
<span className="ml-2">{registration.representative || "-"}</span>
</div>
<div>
<span className="text-sm font-medium text-gray-600">현재상태:</span>
<Badge className="ml-2">{registration.status}</Badge>
</div>
</div>
{/* 문서 제출 현황 */}
<div>
<div className="flex items-center justify-between mb-4">
<h3 className="text-lg font-semibold">문서 제출 현황</h3>
</div>
<div className="border rounded-lg">
<div className="grid grid-cols-4 gap-4 p-4 bg-gray-50 font-medium text-sm">
<div>문서유형</div>
<div>상태</div>
<div>제출일자</div>
<div>액션</div>
</div>
{documentStatusColumns.map((doc) => {
const isSubmitted = registration.documentSubmissions?.[
doc.key as keyof typeof registration.documentSubmissions
] as boolean || false;
// 내자인 경우 통장사본은 표시하지 않음
const isForeign = registration.country !== 'KR';
if (doc.key === 'bankCopy' && !isForeign) {
return null;
}
return (
<div
key={doc.key}
className="grid grid-cols-4 gap-4 p-4 border-t items-center"
>
<div className="flex items-center gap-2">
<StatusIcon status={isSubmitted} />
{doc.label}
{doc.key === 'bankCopy' && isForeign && (
<span className="text-xs text-blue-600">(외자 필수)</span>
)}
</div>
<div>
<StatusBadge status={isSubmitted} />
</div>
<div className="text-sm text-gray-600">
{isSubmitted ? "2024.01.01" : "-"}
</div>
<div>
{isSubmitted && (
<Button
size="sm"
variant="outline"
onClick={() => handleFileDownload(doc.key)}
>
<Download className="w-4 h-4 mr-1" />
다운로드
</Button>
)}
</div>
</div>
);
})}
</div>
</div>
{/* 계약 동의 현황 */}
<div>
<div className="flex items-center justify-between mb-4">
<h3 className="text-lg font-semibold">계약 동의 현황</h3>
</div>
<div className="border rounded-lg">
<div className="grid grid-cols-4 gap-4 p-4 bg-gray-50 font-medium text-sm">
<div>계약유형</div>
<div>상태</div>
<div>서약일자</div>
<div>액션</div>
</div>
{!registration.basicContracts || registration.basicContracts.length === 0 ? (
<div className="p-4 border-t text-center text-gray-500">
요청된 기본계약이 없습니다.
</div>
) : (
registration.basicContracts.map((contract, index) => {
const isCompleted = contract.status === "VENDOR_SIGNED";
return (
<div
key={`${contract.templateId}-${index}`}
className="grid grid-cols-4 gap-4 p-4 border-t items-center"
>
<div className="flex items-center gap-2">
<StatusIcon status={isCompleted} />
{contract.templateName || "템플릿명 없음"}
</div>
<div>
<StatusBadge status={isCompleted} />
</div>
<div className="text-sm text-gray-600">
{isCompleted && contract.createdAt
? new Intl.DateTimeFormat('ko-KR').format(new Date(contract.createdAt))
: "-"
}
</div>
<div>
{isCompleted && (
<Button
size="sm"
variant="outline"
onClick={() => handleContractDownload(index)}
>
<Download className="w-4 h-4 mr-1" />
다운로드
</Button>
)}
</div>
</div>
);
})
)}
</div>
</div>
{/* 안전적격성 평가 */}
<div>
<h3 className="text-lg font-semibold mb-4">안전적격성 평가</h3>
<div className="p-4 border rounded-lg">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<StatusIcon status={!!registration.safetyQualificationContent} />
<span>안전적격성 평가</span>
</div>
<StatusBadge status={!!registration.safetyQualificationContent} />
</div>
{registration.safetyQualificationContent && (
<div className="mt-3 p-3 bg-gray-50 rounded">
<p className="text-sm">{registration.safetyQualificationContent}</p>
</div>
)}
</div>
</div>
{/* 추가 정보 */}
<div>
<h3 className="text-lg font-semibold mb-4">추가 정보</h3>
<div className="p-4 border rounded-lg">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<StatusIcon status={registration.additionalInfo} />
<span>추가 정보 등록</span>
</div>
<StatusBadge status={registration.additionalInfo} />
</div>
</div>
</div>
</div>
</DialogContent>
</Dialog>
);
}
|