EVMS 완전 자동화: - 공기 지연 AI 예측 (SPI 기반 준공일 예측) - 기성청구 가능 금액 자동 산출 - 매일 자정 EVMS 스냅샷 자동 생성 (APScheduler) - 매일 07:00 GONGSA 아침 브리핑 자동 생성 준공도서 패키지: - 준공 요약 + 품질시험 목록 + 검측 이력 + 인허가 현황 → ZIP 번들 - 준공 준비 체크리스트 API - 4종 HTML 템플릿 (WeasyPrint PDF 출력) Vision AI Level 3: - 설계 도면 vs 현장 사진 비교 보조 판독 (Claude Vision) - 철근 배근, 거푸집 치수 1차 분석 설계도서 파싱: - PDF 이미지/텍스트에서 공종·수량·규격 자동 추출 - Pandoc HWP 출력 지원 발주처 전용 포털: - 토큰 기반 읽기 전용 API - 공사 현황 대시보드, 공정률 추이 차트 에이전트 협업 고도화: - 협업 시나리오 (concrete_pour, excavation, weekly_report) - GONGSA→PUMJIL→ANJEON 순차 처리 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { font-family: 'Noto Sans KR', sans-serif; font-size: 10pt; color: #111; padding: 15mm; }
|
|
h1 { text-align: center; font-size: 16pt; font-weight: 700; margin-bottom: 6mm; }
|
|
.meta { text-align: center; color: #555; margin-bottom: 6mm; }
|
|
table { width: 100%; border-collapse: collapse; }
|
|
th, td { border: 1px solid #999; padding: 2mm 3mm; font-size: 9pt; }
|
|
th { background: #1e3a5f; color: white; text-align: center; }
|
|
tr:nth-child(even) td { background: #f8f8f8; }
|
|
.footer { margin-top: 6mm; text-align: right; font-size: 9pt; color: #777; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>검측 이력</h1>
|
|
<div class="meta">{{ project.name }} | 생성일: {{ today }} | 총 {{ inspections|length }}건</div>
|
|
<table>
|
|
<tr><th>No.</th><th>요청일</th><th>검측 항목</th><th>위치</th><th>상태</th><th>결과</th><th>검측자</th></tr>
|
|
{% for insp in inspections %}
|
|
<tr>
|
|
<td style="text-align:center">{{ loop.index }}</td>
|
|
<td>{{ insp.requested_date }}</td>
|
|
<td>{{ insp.inspection_type }}</td>
|
|
<td>{{ insp.location_detail or '-' }}</td>
|
|
<td style="text-align:center">
|
|
{% if insp.status.value == 'completed' %}완료
|
|
{% elif insp.status.value == 'sent' %}발송됨
|
|
{% else %}초안{% endif %}
|
|
</td>
|
|
<td style="text-align:center">
|
|
{% if insp.result %}
|
|
{% if insp.result.value == 'pass' %}합격
|
|
{% elif insp.result.value == 'fail' %}불합격
|
|
{% else %}조건부{% endif %}
|
|
{% else %}-{% endif %}
|
|
</td>
|
|
<td>{{ insp.inspector_name or '-' }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<div class="footer">CONAI 자동 생성</div>
|
|
</body>
|
|
</html>
|