feat(B08): 구조물 원단위 줄에 구간 표기 — 「H=2.5 · L=10.0m · NO.4 ~ NO.4+10」

계획서 V-8. 엔진이 일부러 화면 몫으로 남긴 자리(`_Handoff_Rows_Prep.py:182`
「표기는 만들지 않는다 — 측점 간격을 아는 화면 몫이다」)를 채움.

- 토적표가 쓰던 `stationLabel` 을 **내보내 같이 씀** — 두 벌로 만들면 같은 측점이
  화면 두 곳에서 다르게 적힘.
- 구간은 `start_m`·`end_m` 을 그대로 씀. `length_m` 이 그 구간의 합이라 두 값이 갈릴 자리가 없음.
- 값이 없으면 표기를 안 붙임(지어내지 않음).

화면 실측 — 「돌쌓기(찰) H=2.5 · L=10.0m · NO.4 ~ NO.4+10」(정본 80~90m)로 뜸.
시험 둘 추가(표기 함수 한 벌 · 구간은 구조물 값에서), 전체 1220 통과·실패 0.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-09-09 23:36:17 +09:00
co-authored by Claude Opus 5
parent 5d4473b40f
commit 909e4e8ed2
3 changed files with 52 additions and 3 deletions
+18 -1
View File
@@ -11,6 +11,8 @@
* ⚠ 반올림은 여기서만 한다(PLAN 8-16 표기 자리 ≠ 계산 자리). 서버가 준 값은 전정밀이다.
* ========================================================================== */
import { stationLabel } from "./B08_Quantity_UI_EarthworkGrid";
export interface MaterialRow {
name: string;
unit: string;
@@ -45,6 +47,10 @@ export interface UnitQuantityStructure {
name: string;
length_m: number;
height_m: number;
/** 구조물이 덮는 구간(m) — 표기(`NO.4 ~ NO.4+10`)는 화면 몫이다
* (`B08_Quantity_Engine_Handoff_Rows_Prep.py:182` 「표기는 만들지 않는다」). */
start_m?: number | null;
end_m?: number | null;
notes: string[];
components: {
name: string;
@@ -97,6 +103,12 @@ export interface MaterialResponse {
}[];
}
/** 구조물이 덮는 구간을 실무 표기로 — 값이 없으면 빈 문자열(지어내지 않는다). */
function stationRange(startM?: number | null, endM?: number | null): string {
if (typeof startM !== "number" || typeof endM !== "number") return "";
return startM === endM ? stationLabel(startM) : `${stationLabel(startM)} ~ ${stationLabel(endM)}`;
}
/** 거푸집·동바리 안내에 쓰는 값. */
export interface FormworkInfo {
formwork_notes?: string[];
@@ -418,7 +430,12 @@ export function renderUnitQuantityGrid(response: MaterialResponse): HTMLElement
const body = document.createElement("tbody");
for (const structure of unit.structures) {
const spec = `H=${num(structure.height_m, 1)} · L=${num(structure.length_m, 1)}m`;
// 규격 + **구간 표기** — 구간은 길이와 같은 값에서 나오므로 둘이 갈릴 수 없다
// (`length_m` 은 겹침을 지운 구간 목록의 합, 2026-09-09 확인).
const span = stationRange(structure.start_m, structure.end_m);
const spec =
`H=${num(structure.height_m, 1)} · L=${num(structure.length_m, 1)}m` +
(span ? ` · ${span}` : "");
if (!structure.components.length) {
const tr = document.createElement("tr");
tr.append(textCell(structure.name, "b08-grid__station"));