Files
sam-react-prod/src/components/quality/InspectionManagement/documents/InspectionRequestDocument.tsx

258 lines
14 KiB
TypeScript
Raw Normal View History

'use client';
/**
*
*
* :
* - (/)
* - (, , )
* - (, , , )
* -
*/
import { ConstructionApprovalTable } from '@/components/document-system';
import type { InspectionRequestDocument as InspectionRequestDocumentType } from '../types';
interface InspectionRequestDocumentProps {
data: InspectionRequestDocumentType;
}
export function InspectionRequestDocument({ data }: InspectionRequestDocumentProps) {
return (
<div className="bg-white p-8 min-h-full text-[11px]">
{/* 헤더: 제목 (좌측) + 결재란 (우측) */}
<div className="flex justify-between items-start mb-4">
<div>
<h1 className="text-2xl font-bold tracking-widest mb-2"> </h1>
<div className="text-[10px] space-y-1">
<div className="flex gap-4">
<span>: <strong>{data.documentNumber}</strong></span>
<span>: <strong>{data.createdDate}</strong></span>
</div>
</div>
</div>
<ConstructionApprovalTable
approvers={{
writer: data.approvalLine[0]
? { name: data.approvalLine[0].name, department: data.approvalLine[0].department }
: undefined,
approver1: data.approvalLine[1]
? { name: data.approvalLine[1].name, department: data.approvalLine[1].department }
: undefined,
approver2: data.approvalLine[2]
? { name: data.approvalLine[2].name, department: data.approvalLine[2].department }
: undefined,
approver3: data.approvalLine[3]
? { name: data.approvalLine[3].name, department: data.approvalLine[3].department }
: undefined,
}}
/>
</div>
{/* 기본 정보 */}
<div className="border border-gray-400 mb-4">
<div className="bg-gray-200 text-center py-1 font-bold border-b border-gray-400"> </div>
<table className="w-full">
<tbody>
<tr className="border-b border-gray-300">
<td className="bg-gray-100 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.client || '-'}</td>
<td className="bg-gray-100 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.companyName || '-'}</td>
</tr>
<tr className="border-b border-gray-300">
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.manager || '-'}</td>
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.orderNumber || '-'}</td>
</tr>
<tr className="border-b border-gray-300">
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"> </td>
<td className="px-2 py-1 border-r border-gray-300">{data.managerContact || '-'}</td>
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.siteName || '-'}</td>
</tr>
<tr className="border-b border-gray-300">
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.deliveryDate || '-'}</td>
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"> </td>
<td className="px-2 py-1">{data.siteAddress || '-'}</td>
</tr>
<tr>
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"> </td>
<td className="px-2 py-1 border-r border-gray-300">{data.totalLocations || '-'}</td>
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.receptionDate || '-'}</td>
</tr>
<tr className="border-t border-gray-300">
<td className="bg-gray-100 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1" colSpan={3}>{data.visitRequestDate || '-'}</td>
</tr>
</tbody>
</table>
</div>
{/* 입력사항: 4개 섹션 */}
<div className="border border-gray-400 mb-4">
<div className="bg-gray-200 text-center py-1 font-bold border-b border-gray-400"></div>
{/* 건축공사장 정보 */}
<div className="border-b border-gray-300">
<div className="bg-gray-100 px-2 py-1 font-medium border-b border-gray-300"> </div>
<table className="w-full">
<tbody>
<tr>
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.constructionSite.siteName || '-'}</td>
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.constructionSite.landLocation || '-'}</td>
<td className="bg-gray-50 px-2 py-1 w-20 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.constructionSite.lotNumber || '-'}</td>
</tr>
</tbody>
</table>
</div>
{/* 자재유통업자 정보 */}
<div className="border-b border-gray-300">
<div className="bg-gray-100 px-2 py-1 font-medium border-b border-gray-300"> </div>
<table className="w-full">
<tbody>
<tr className="border-b border-gray-300">
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.materialDistributor.companyName || '-'}</td>
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.materialDistributor.companyAddress || '-'}</td>
</tr>
<tr>
<td className="bg-gray-50 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.materialDistributor.representativeName || '-'}</td>
<td className="bg-gray-50 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.materialDistributor.phone || '-'}</td>
</tr>
</tbody>
</table>
</div>
{/* 공사시공자 정보 */}
<div className="border-b border-gray-300">
<div className="bg-gray-100 px-2 py-1 font-medium border-b border-gray-300"> </div>
<table className="w-full">
<tbody>
<tr className="border-b border-gray-300">
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.constructorInfo.companyName || '-'}</td>
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.constructorInfo.companyAddress || '-'}</td>
</tr>
<tr>
<td className="bg-gray-50 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.constructorInfo.name || '-'}</td>
<td className="bg-gray-50 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.constructorInfo.phone || '-'}</td>
</tr>
</tbody>
</table>
</div>
{/* 공사감리자 정보 */}
<div>
<div className="bg-gray-100 px-2 py-1 font-medium border-b border-gray-300"> </div>
<table className="w-full">
<tbody>
<tr className="border-b border-gray-300">
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.supervisor.officeName || '-'}</td>
<td className="bg-gray-50 px-2 py-1 w-28 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.supervisor.officeAddress || '-'}</td>
</tr>
<tr>
<td className="bg-gray-50 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1 border-r border-gray-300">{data.supervisor.name || '-'}</td>
<td className="bg-gray-50 px-2 py-1 font-medium border-r border-gray-300"></td>
<td className="px-2 py-1">{data.supervisor.phone || '-'}</td>
</tr>
</tbody>
</table>
</div>
</div>
{/* 검사 요청 시 필독 */}
<div className="border border-gray-400 mb-4">
<div className="bg-gray-800 text-white text-center py-1 font-bold border-b border-gray-400"> </div>
<div className="px-4 py-3 text-[11px] leading-relaxed text-center">
<p>
,
<br />
.
<br />
<span className="text-red-600 font-medium"> .</span>
</p>
<p className="mt-2 text-gray-600">
( .)
</p>
</div>
</div>
{/* 검사대상 사전 고지 정보 */}
<div className="border border-gray-400 mb-4">
<div className="bg-gray-800 text-white text-center py-1 font-bold border-b border-gray-400"> </div>
<table className="w-full">
<thead>
{/* 1단: 오픈사이즈 병합 */}
<tr className="bg-gray-100 border-b border-gray-300">
<th className="border-r border-gray-400 px-2 py-1 w-12 text-center" rowSpan={3}>No.</th>
<th className="border-r border-gray-400 px-2 py-1 w-16 text-center" rowSpan={3}></th>
<th className="border-r border-gray-400 px-2 py-1 w-20 text-center" rowSpan={3}></th>
<th className="border-r border-gray-400 px-2 py-1 text-center" colSpan={4}></th>
<th className="px-2 py-1 text-center" rowSpan={3}></th>
</tr>
{/* 2단: 발주 규격, 시공후 규격 */}
<tr className="bg-gray-100 border-b border-gray-300">
<th className="border-r border-gray-400 px-2 py-1 text-center" colSpan={2}> </th>
<th className="border-r border-gray-400 px-2 py-1 text-center" colSpan={2}> </th>
</tr>
{/* 3단: 가로, 세로 */}
<tr className="bg-gray-100 border-b border-gray-400">
<th className="border-r border-gray-400 px-2 py-1 w-16 text-center"></th>
<th className="border-r border-gray-400 px-2 py-1 w-16 text-center"></th>
<th className="border-r border-gray-400 px-2 py-1 w-16 text-center"></th>
<th className="border-r border-gray-400 px-2 py-1 w-16 text-center"></th>
</tr>
</thead>
<tbody>
{data.priorNoticeItems.map((item, index) => (
<tr key={item.id} className="border-b border-gray-300">
<td className="border-r border-gray-300 px-2 py-1 text-center">{index + 1}</td>
<td className="border-r border-gray-300 px-2 py-1 text-center">{item.floor}</td>
<td className="border-r border-gray-300 px-2 py-1 text-center">{item.symbol}</td>
<td className="border-r border-gray-300 px-2 py-1 text-center">{item.orderWidth}</td>
<td className="border-r border-gray-300 px-2 py-1 text-center">{item.orderHeight}</td>
<td className="border-r border-gray-300 px-2 py-1 text-center">{item.constructionWidth}</td>
<td className="border-r border-gray-300 px-2 py-1 text-center">{item.constructionHeight}</td>
<td className="px-2 py-1">{item.changeReason || '-'}</td>
</tr>
))}
{data.priorNoticeItems.length === 0 && (
<tr>
<td colSpan={8} className="px-2 py-4 text-center text-gray-400">
.
</td>
</tr>
)}
</tbody>
</table>
</div>
{/* 서명 영역 */}
<div className="mt-8 text-center text-[10px]">
<p> .</p>
<div className="mt-6">
<p>{data.createdDate}</p>
</div>
</div>
</div>
);
}