diff options
Diffstat (limited to 'lib/site-visit/vendor-info-view-dialog.tsx')
| -rw-r--r-- | lib/site-visit/vendor-info-view-dialog.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/site-visit/vendor-info-view-dialog.tsx b/lib/site-visit/vendor-info-view-dialog.tsx index fb2b0dfe..ded5de72 100644 --- a/lib/site-visit/vendor-info-view-dialog.tsx +++ b/lib/site-visit/vendor-info-view-dialog.tsx @@ -92,28 +92,28 @@ function VendorDetailView({ return (
<div className="space-y-6">
- {/* 협력업체 공장 정보 */}
+ {/* 협력업체 실사 장소 정보 */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<Building2 className="h-5 w-5" />
- 협력업체 공장 정보
+ 협력업체 실사 장소 정보
</CardTitle>
</CardHeader>
<CardContent>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="space-y-4">
<div>
- <h4 className="font-semibold mb-2">공장 기본 정보</h4>
+ <h4 className="font-semibold mb-2">실사 장소 기본 정보</h4>
<div className="space-y-2 text-sm">
- <div><span className="font-medium">공장명:</span> {vendorInfo.factoryName}</div>
- <div><span className="font-medium">공장위치:</span> {vendorInfo.factoryLocation}</div>
- <div><span className="font-medium">공장주소:</span> {vendorInfo.factoryAddress}</div>
+ <div><span className="font-medium">실사 장소명:</span> {vendorInfo.factoryName}</div>
+ <div><span className="font-medium">실사 지역:</span> {vendorInfo.factoryLocation}</div>
+ <div><span className="font-medium">실사 주소:</span> {vendorInfo.factoryAddress}</div>
</div>
</div>
<div>
- <h4 className="font-semibold mb-2">공장 담당자 정보</h4>
+ <h4 className="font-semibold mb-2">실사 참석자 정보</h4>
<div className="space-y-2 text-sm">
<div className="flex items-center gap-2">
<User className="h-4 w-4" />
@@ -134,16 +134,16 @@ function VendorDetailView({ <div className="space-y-4">
{vendorInfo.factoryDirections && (
<div>
- <h4 className="font-semibold mb-2">공장 가는 법</h4>
+ <h4 className="font-semibold mb-2">실사 장소 이동 방법</h4>
<div className="bg-muted p-3 rounded-md">
<p className="text-sm whitespace-pre-wrap">{vendorInfo.factoryDirections}</p>
</div>
</div>
)}
-
+
{vendorInfo.accessProcedure && (
<div>
- <h4 className="font-semibold mb-2">공장 출입절차</h4>
+ <h4 className="font-semibold mb-2">실사 장소 출입절차</h4>
<div className="bg-muted p-3 rounded-md">
<p className="text-sm whitespace-pre-wrap">{vendorInfo.accessProcedure}</p>
</div>
@@ -411,7 +411,7 @@ export function VendorInfoViewDialog({ </div>
<div className="grid grid-cols-2 md:grid-cols-4 gap-2 text-sm text-muted-foreground">
<div>
- <span className="font-medium">공장명:</span>{" "}
+ <span className="font-medium">실사 장소명:</span>{" "}
{request.vendorInfo?.factoryName || "미입력"}
</div>
<div>
|
