무슨 일이 있었나 랩탑 줄의 병합 `20ba886c`(Merge origin/main_desktop_1·main_laptop_1·sub_desktop_1 into sub_laptop_1)가 우리 파일 22개를 떨구고 35개 파일의 내용을 옛것으로 되돌림. 손으로 지운 커밋은 없고 **병합 자체가 떨군 것**임. 그것이 `origin/dev`·`main_laptop_1`·`sub_laptop_1`· `CODEX` 까지 퍼졌고(데스크탑 둘만 무사), 이 창의 병합 `d92c1f2b` 로 들어옴. 잃었던 것 - 공용 — `common_util_provenance.py` · `ui_template_provenance.ts` - B08 — 근거 사전 · 좌측 패널 상자 모듈 · 토량환산계수 칸 - B09 — 근거 사전 셋 - B05 — 계획노선 편집 모듈 아홉 · 지형 라우터 · B04 지도 모듈 - 시험 셋과, 35개 파일 안의 최근 작업(환산계수 고르기 · 근거 호버 배선 등) 어떻게 되살렸나 `611a2b40`(병합 직전, 전부 온전)에서 `git show <커밋>:<경로>` 로 내용만 꺼내 되돌림. 이력은 안 건드림. ⚠ HEAD 에만 있던 「추가 816줄」은 랩탑의 새 작업이 아니라 **되살아난 옛 코드**였음(B05 편집은 모듈로 쪼개기 전 덩어리 · B08 라우터는 환산계수 고르기 전 옛 상수판). 되돌릴 시점 이후의 **진짜 새 커밋은 둘뿐**이라 그 둘만 패치로 다시 얹음 — `9f827bf6`(리로드 빌드 고리 끊기, 데스크탑 보조) · `b9bca6b3`(B06 조정창 1px, 랩탑). 위키 여덟은 코덱스 몫이라 손대지 않음. 자체검증 — 양쪽 작업이 다 살아 있음을 짚어 확인: `main.py` 의 「개발 서버는 살려 둔다」 · `B05_Profile_Engine_Grade.py` 의 `plan_curve_length_limit_m` · `B08_..._EarthworkGrid.ts` 의 `attachProvenance`. `tsc --noEmit` 통과 · `pytest -q` **1317 passed, 28 skipped** (되살리기 전에는 시험 둘이 수집 단계에서 깨져 있었음). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017RANEBHns1S4tkmsYwewtk
481 lines
21 KiB
Python
481 lines
21 KiB
Python
"""B09 원가계산 — ④ 예산내역서 **줄 만들기** (`B09_Estimation_BillOfQuantities` 보조).
|
||
|
||
가르는 금은 「표 한 장을 짜는가 / 줄 하나를 만드는가」다. 700줄 제한(CLAUDE.md 4장)에
|
||
걸려 나눴고, 부르는 쪽은 종전대로 조판 모듈에서 가져다 쓴다.
|
||
|
||
⚠ **여기 있는 줄 만들기는 하나같이 「못 세우면 금액을 비운다」**로 끝난다 —
|
||
0 으로 때우면 총액이 그럴듯해지고 무엇이 빠졌는지 안 보인다.
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
from decimal import Decimal
|
||
|
||
from B09_Estimation.B09_Estimation_BillOfQuantities import (
|
||
SUPPLY_OWNER,
|
||
SUPPLY_UNKNOWN,
|
||
BillResult,
|
||
BillRow,
|
||
HandoffMaterial,
|
||
HandoffWorkItem,
|
||
_BLOCKED_LABELS,
|
||
_MasterNode,
|
||
_decimal,
|
||
)
|
||
from B09_Estimation.B09_Estimation_Rounding import OutputPlace, round_at
|
||
from B09_Estimation.B09_Estimation_UnitPrice import UnitPriceBuild, find_variant_code
|
||
|
||
_ZERO = Decimal(0)
|
||
|
||
|
||
def _haul_price_of(item: HandoffWorkItem, result: BillResult) -> Decimal:
|
||
"""그 운반 줄에 실제로 붙은 단가. 안 붙었으면 0 — ㉡ 검사에 넘길 값이다."""
|
||
for row in result.rows:
|
||
if row.name == item.name and row.unit_price_krw is not None:
|
||
return row.unit_price_krw
|
||
return _ZERO
|
||
|
||
|
||
def _composite_row(
|
||
item_no: str,
|
||
item: HandoffWorkItem,
|
||
unit_prices: UnitPriceBuild,
|
||
result: BillResult,
|
||
) -> BillRow:
|
||
"""묶음 줄 — 조각들의 `단가 × 조각수량` 을 더해 **1단위 단가**를 만든다.
|
||
|
||
옹벽처럼 품셈에 그 공종이 없는 것은 **조각을 합친 것이 곧 그 줄의 단가**다
|
||
(PLAN 9-3 「제목 + 상세」 한 쌍). 조각이 하나라도 비면 **금액을 만들지 않는다** —
|
||
절반짜리 단가가 서는 것이 가장 위험하다.
|
||
"""
|
||
row = BillRow(
|
||
item_no=item_no,
|
||
level=1,
|
||
code=None,
|
||
name=item.name,
|
||
spec=item.spec,
|
||
unit=item.unit,
|
||
quantity=item.quantity,
|
||
in_bill=item.in_bill,
|
||
)
|
||
missing_parts: list[str] = []
|
||
money = None
|
||
for part in item.composite_parts:
|
||
code = str(part.get("code") or "")
|
||
amount = _decimal(part.get("quantity"), None)
|
||
if not code or amount is None or f"B-{code}" not in unit_prices.book.titles:
|
||
missing_parts.append(code or str(part.get("name") or "이름 없음"))
|
||
continue
|
||
scaled = unit_prices.book.resolve(f"B-{code}").scaled(amount)
|
||
money = scaled if money is None else money + scaled
|
||
|
||
reasons: list[str] = []
|
||
for pending in item.composite_not_ready:
|
||
# 「단가 없음」과 「물량 없음」을 가른다 — 사유가 다르면 할 일도 다르다.
|
||
if isinstance(pending, str):
|
||
missing_parts.append(pending)
|
||
continue
|
||
label = str(pending.get("code") or pending.get("name") or "이름 없음")
|
||
why = str(pending.get("reason") or pending.get("note") or "")
|
||
missing_parts.append(label)
|
||
if why:
|
||
reasons.append(f"{label}: {why}")
|
||
|
||
if missing_parts or money is None:
|
||
detail_text = "; ".join(reasons[:3]) or ", ".join(missing_parts[:4])
|
||
row.add_note("quantity", f"묶음 조각이 덜 찼습니다 — {detail_text}")
|
||
result.missing.append(
|
||
{
|
||
"name": row.name,
|
||
"unit": row.unit,
|
||
"quantity": str(item.quantity),
|
||
"reason": (
|
||
f"묶음 조각 미확보 ({len(missing_parts)}건)"
|
||
+ (f" — {reasons[0]}" if reasons else "")
|
||
),
|
||
}
|
||
)
|
||
return row
|
||
|
||
line = money.scaled(item.quantity)
|
||
row.unit_price_krw = round_at(money.total, OutputPlace.UNIT_PRICE_ROW)
|
||
row.amount_krw = round_at(line.total, OutputPlace.BOQ_ROW)
|
||
row.material_krw = line.material
|
||
row.labor_krw = line.labor
|
||
row.expense_krw = line.expense
|
||
row.add_note("quantity", f"묶음 {len(item.composite_parts)}조각 합계")
|
||
return row
|
||
|
||
|
||
def _excluded_row(item: HandoffWorkItem) -> BillRow:
|
||
"""`in_bill=false` 줄. **수량만 보이고 단가·금액을 안 붙인다.**
|
||
|
||
세 갈래가 섞여 온다 — 갈라 적지 않으면 사용자가 할 일을 못 읽는다.
|
||
· **검산용**(보정량계·무대) — 합계 검산에만 쓰는 줄
|
||
· **막힌 줄**(`blocked_kind` 있음) — 입력이나 원단위를 기다림
|
||
· ⚠ **여기서 세지 않는 줄**(`blocked_kind` 없음) — 「다른 표에서 이미 섬」·
|
||
「이 노선엔 없음」. **이것을 할 일 목록에 얹으면 결국 이중계상이 된다.**
|
||
"""
|
||
row = BillRow(
|
||
item_no="",
|
||
level=1,
|
||
code=item.work_item_code,
|
||
name=item.name,
|
||
spec=item.spec,
|
||
unit=item.unit,
|
||
quantity=item.quantity,
|
||
in_bill=False,
|
||
)
|
||
# 줄 하나가 통째로 빠지는 사유라 닿는 열이 없다 — 키를 비워 **모든 칸**에 따라붙게 둔다.
|
||
row.add_note(
|
||
"",
|
||
item.blocked_reason or item.in_bill_reason or "합계 검산용 줄 — 금액을 매기지 않습니다.",
|
||
)
|
||
return row
|
||
|
||
|
||
def _leaf_row(
|
||
item_no: str,
|
||
node: _MasterNode,
|
||
item: HandoffWorkItem,
|
||
unit_prices: UnitPriceBuild,
|
||
result: BillResult,
|
||
) -> BillRow:
|
||
"""세부 공종 한 줄. 단가가 없으면 **금액을 비우고** `missing` 에 남긴다."""
|
||
row = BillRow(
|
||
item_no=item_no,
|
||
level=node.level,
|
||
code=node.code,
|
||
name=item.name or node.name,
|
||
spec=item.spec,
|
||
unit=item.unit,
|
||
quantity=item.quantity,
|
||
in_bill=item.in_bill,
|
||
)
|
||
if item.spec_class_basis:
|
||
# 갈래 판정 근거는 **B08 문구를 그대로** 쓴다(두 벌로 짜지 않는다).
|
||
row.add_note("spec", item.spec_class_basis)
|
||
if item.application_ratio_pct is not None:
|
||
# ⚠ 곱하지 않는다 — B08 이 이미 곱한 값이다. 산출근거로만 적는다.
|
||
row.add_note("quantity", f"반영률 {item.application_ratio_pct}% 적용 후 수량")
|
||
elif item.application_ratio_breakdown:
|
||
# ⚠ **「율 없음」이 아니라 「갈래마다 다름」이다.** 율이 갈리는 줄은 B08 이 `pct` 를
|
||
# 비우고 갈래로만 보낸다. 그 사실을 안 적으면 **값은 맞는데 왜 그 수량인지**를
|
||
# 사람이 못 본다 — 값이 맞아도 그것은 반쪽이다(2026-09-09 두 창 확인).
|
||
parts = ", ".join(
|
||
f"{name} {value}%" for name, value in item.application_ratio_breakdown.items()
|
||
)
|
||
row.add_note("quantity", f"반영률이 갈래마다 다릅니다 — {parts} (적용 후 수량)")
|
||
|
||
if not item.in_bill:
|
||
# 검산용 줄 — 수량은 보이되 **단가를 안 붙인다**(PLAN 8-7 ㉡ 와 같은 성격).
|
||
row.quantity = item.quantity
|
||
row.add_note("", item.in_bill_reason or "합계 검산용 줄 — 금액을 매기지 않습니다.")
|
||
result.excluded.append(row)
|
||
return row
|
||
|
||
# ⚠⚠ **차단인지 아닌지는 `blocked_kind` 가 정한다 — 문구가 아니다.**
|
||
# 2026-09-09 실측: 배수관 다섯 줄이 `blocked_kind=None · in_bill=True` 인데도
|
||
# **사유가 있다는 것만으로 막혀** 금액이 안 서고 있었다. 그 사유는 차단이 아니라
|
||
# **주의 문구**였다 — 「관종을 안 정해 기본값(파형강관)으로 섰습니다」.
|
||
# ⇒ 사유만 온 줄은 **금액을 세우고 그 문구를 곁말로** 단다.
|
||
if item.blocked_reason and not item.blocked_kind:
|
||
row.add_note("spec", f"ⓘ {item.blocked_reason}")
|
||
|
||
if item.blocked_reason and item.blocked_kind:
|
||
# B08 이 「왜 못 골랐는지」를 적어 보냈다 — **그 문구를 그대로** 보인다.
|
||
# 사용자가 입력하면 풀리는 것(`input_missing`)과 우리가 만들어야 하는 것을
|
||
# 가르지 않으면, 사용자가 「후보를 고르면 되나」로 잘못 읽는다.
|
||
row.add_note(
|
||
"unit_price_krw",
|
||
f"{_BLOCKED_LABELS.get(item.blocked_kind, '막힘')} — {item.blocked_reason}",
|
||
)
|
||
result.missing.append(
|
||
{
|
||
"name": row.name,
|
||
"code": node.code,
|
||
"unit": row.unit,
|
||
"quantity": str(item.quantity),
|
||
"reason": row.note,
|
||
"blocked_kind": item.blocked_kind,
|
||
}
|
||
)
|
||
return row
|
||
|
||
price_code = f"B-{node.code}"
|
||
if item.variant_value and price_code not in unit_prices.book.titles:
|
||
# B08 은 **의미**(어느 공종·어느 제원)만 보내고 갈래 키는 우리가 만든다.
|
||
# 못 맞추면 후보를 보이는 길로 내려간다 — 가까운 갈래를 임의로 고르지 않는다.
|
||
picked = find_variant_code(node.code, item.variant_value, unit_prices)
|
||
if picked is not None:
|
||
price_code = picked
|
||
row.spec = f"{row.spec} {item.variant_value}".strip()
|
||
|
||
if price_code not in unit_prices.book.titles:
|
||
# 한 층 아래에 일위대가가 있으면 **후보로 보여준다** — 임의로 고르지 않는다
|
||
# (CLAUDE.md 3장 「미결 항목 임의 확정 금지」, B08 `mapping_pending_user` 와 같은 태도).
|
||
# 한 층 아래 공종 + **규격 갈래**(`#무근구조물`) 둘 다 후보로 본다.
|
||
children = sorted(
|
||
code
|
||
for code in unit_prices.book.titles
|
||
if (
|
||
code.startswith(f"{price_code}-")
|
||
and code.count("-") == price_code.count("-") + 1
|
||
and "#" not in code
|
||
)
|
||
or code.startswith(f"{price_code}#")
|
||
)
|
||
if children:
|
||
names = ", ".join(f"{c[2:]} {unit_prices.book.title(c).name}" for c in children)
|
||
row.add_note(
|
||
"unit_price_krw",
|
||
f"이 공종엔 일위대가가 없고 한 층 아래에 있습니다 — 후보: {names}",
|
||
)
|
||
# 관경이 표 밖이면 **무엇을 정해야 하는지**까지 가리킨다.
|
||
diameter_note = pipe_diameter_note(node.code, item.variant_value)
|
||
if diameter_note:
|
||
row.add_note("spec", diameter_note)
|
||
reason = f"일위대가가 하위 공종에 있음(후보 {len(children)}건)"
|
||
else:
|
||
# ⚠ 「아직 안 만든 것」과 「성분이 빠져 못 세운 것」은 **할 일이 다르다**.
|
||
# 뭉뚱그리면 사용자가 무엇을 기다려야 하는지 못 읽는다(2026-09-08 산마루측구:
|
||
# 표에 수량 칸이 비어 있고 「철근가공조립(간단)의 30 %」처럼 참조로만 적힌 자리).
|
||
gap = unit_prices.component_gaps.get(node.code)
|
||
if gap:
|
||
row.add_note("unit_price_krw", f"성분이 빠져 단가를 못 세웠습니다 — {gap}")
|
||
reason = f"성분 미확보 — {gap}"
|
||
else:
|
||
row.add_note(
|
||
"unit_price_krw", "일위대가가 아직 없습니다 — 금액을 0 으로 때우지 않습니다."
|
||
)
|
||
reason = "일위대가 없음"
|
||
result.missing.append(
|
||
{
|
||
"name": row.name,
|
||
"code": node.code,
|
||
"unit": row.unit,
|
||
"quantity": str(item.quantity),
|
||
"reason": reason,
|
||
"candidates": ", ".join(children),
|
||
}
|
||
)
|
||
return row
|
||
|
||
missing_basis = unit_prices.basis_missing.get(node.code)
|
||
if missing_basis:
|
||
# ⚠ 밑수를 모르는 표다 — 「10㎡당」인지 「1㎡당」인지 모른 채 곱하면 10배·100배
|
||
# 틀린다(떼채취가 실제로 100배였다). **곱하지 않고 드러낸다.**
|
||
row.add_note(
|
||
"unit_price_krw",
|
||
f"밑수(기준 수량)를 못 찾은 표입니다 — 곱하지 않았습니다. 원문 {missing_basis}",
|
||
)
|
||
result.missing.append(
|
||
{
|
||
"name": row.name,
|
||
"code": node.code,
|
||
"unit": row.unit,
|
||
"quantity": str(item.quantity),
|
||
"reason": "밑수 미확보 — 곱하면 10배·100배 틀림",
|
||
}
|
||
)
|
||
return row
|
||
|
||
covered = unit_prices.partial_ratio.get(node.code)
|
||
if covered is not None:
|
||
# ⚠ **일부 몫만 선 단가는 안 붙인다.** 「인력(10%)·장비(90%)」 표에서 인력만
|
||
# 붙은 값을 전량에 곱하면 내역서가 조용히 틀린다 — 0 으로 때우는 것과 같은 사고다.
|
||
# 무엇이 없어서 못 붙었는지까지 적는다 — 「붙은 몫 0%」만으로는 어디를 손볼지 모른다.
|
||
why = unit_prices.component_gaps.get(node.code) or ""
|
||
missing_rows = unit_prices.unattached.get(node.code) or []
|
||
if not why and missing_rows:
|
||
why = f"{', '.join(missing_rows[:3])} 줄이 아직 안 붙었습니다"
|
||
row.add_note(
|
||
"unit_price_krw",
|
||
f"단가가 일부만 섰습니다 — 붙은 몫 {covered}%" + (f" · {why}" if why else "") + ".",
|
||
)
|
||
result.missing.append(
|
||
{
|
||
"name": row.name,
|
||
"code": node.code,
|
||
"unit": row.unit,
|
||
"quantity": str(item.quantity),
|
||
"reason": f"단가 일부만 섬(붙은 몫 {covered}%)" + (f" — {why}" if why else ""),
|
||
}
|
||
)
|
||
return row
|
||
|
||
title = unit_prices.book.title(price_code)
|
||
if not title.unit:
|
||
# ⚠ 품셈 표가 기준 단위를 안 준 단가다 — 「10㎡당」 같은 묶음 기준일 수 있다.
|
||
# 값을 막지는 않되(막으면 대부분이 멈춘다) **모르는 채 곱했다는 사실을 적는다**.
|
||
# 비고를 **덮지 않고 잇는다** — 반영률 문구가 먼저 적혀 있을 수 있다.
|
||
row.add_note(
|
||
"unit_price_krw",
|
||
f"단가의 기준 단위가 표에 없습니다 — B08 수량 단위({row.unit})와 같다고 "
|
||
"보고 곱했습니다. 확인 필요.",
|
||
)
|
||
|
||
if title.unit and row.unit and not _same_unit(title.unit, row.unit):
|
||
# ⚠⚠ **단위가 다르면 곱하지 않는다** (2026-09-08 실측으로 드러난 자리).
|
||
# 돌쌓기(찰)이 B08 에서 **연장 10 m** 로 오는데 품셈 일위대가는 **㎡당**이라,
|
||
# 52,938.9원/㎡ × 10 m = 529,389원이 조용히 서 있었다. 면적으로 세면 26.101㎡ ×
|
||
# 52,938.9 = 1,381,753원이라 **2.6 배 적은 금액**이 내역서에 든 셈이다.
|
||
# 어느 쪽이 맞는지는 우리가 정할 일이 아니다 — **B08 이 면적을 보내거나 묶음
|
||
# 조각으로 보내야** 풀린다. 그때까지 **금액을 만들지 않고 드러낸다.**
|
||
row.add_note(
|
||
"amount_krw",
|
||
f"단위가 안 맞습니다 — 수량은 {row.unit}, 단가는 {title.unit}당입니다. "
|
||
"곱하면 금액이 틀리므로 비워 둡니다.",
|
||
)
|
||
result.missing.append(
|
||
{
|
||
"name": row.name,
|
||
"code": node.code,
|
||
"unit": row.unit,
|
||
"quantity": str(item.quantity),
|
||
"reason": f"단위 불일치 — 수량 {row.unit} vs 단가 {title.unit}당",
|
||
"blocked_kind": "unit_mismatch",
|
||
}
|
||
)
|
||
return row
|
||
|
||
# ⚠ **수량이 미확정 산식 위에 서 있는 줄**은 금액과 함께 그 사실을 싣는다.
|
||
# 금액이 커질수록 더 그렇다 — 지금 구조물터파기가 내역서에서 가장 큰 줄인데
|
||
# 그 밑수가 사용자 확정을 기다리고 있다(계획서 4-12 3단계).
|
||
pending = pending_formula_note(node.code)
|
||
if pending:
|
||
row.add_note("quantity", pending)
|
||
|
||
# ⚠ **원문에는 있는데 단가에 못 실린 몫**도 같은 자리에서 말한다. 금액이 서 있는 줄이라
|
||
# 표시가 없으면 완성된 값으로 읽힌다(규준틀 둘이 인력만으로 492만원이었다).
|
||
gap = known_gap_note(node.code)
|
||
if gap:
|
||
row.add_note("unit_price_krw", gap)
|
||
|
||
# 쓰인 차례를 기억한다 — 실무 참조번호(「단산 46」)가 그 차례다.
|
||
if price_code not in result.used_unit_prices:
|
||
result.used_unit_prices.append(price_code)
|
||
|
||
unit_money = unit_prices.book.resolve(price_code)
|
||
line = unit_money.scaled(item.quantity)
|
||
row.unit_price_krw = round_at(unit_money.total, OutputPlace.UNIT_PRICE_ROW)
|
||
# 내역서 **본체** 행은 절사다 — 집계표(반올림)와 어긋나는 것이 정상.
|
||
row.amount_krw = round_at(line.total, OutputPlace.BOQ_ROW)
|
||
# 3분할은 전정밀로 들고 간다 — ⑤ 밑수가 비목마다 갈리므로 여기서 자르면 안 된다.
|
||
row.material_krw = line.material
|
||
row.labor_krw = line.labor
|
||
row.expense_krw = line.expense
|
||
return row
|
||
|
||
|
||
#: 수량 산식이 **사용자 확정을 기다리는** 공종 — 금액은 세우되 그 사실을 함께 싣는다.
|
||
#:
|
||
#: ⚠ **2026-09-09 저녁 비었다.** 걸려 있던 셋(구조물터파기·되메우기·잔토처리)이
|
||
#: **사용자 확정 5차로 닫혔다** — 「비탈 터파기, 지금 이대로」. 값은 안 바뀌었고
|
||
#: 11,263,899원이 **확정된 값**이 됐다.
|
||
#: ⚠ **표를 지우지 않고 비워 둔다** — 같은 성격의 자리가 또 생기면 여기 적으면 된다.
|
||
#: 적을 때는 **왜 대기인지**와 **정해지면 얼마나 움직이는지**를 함께 적을 것.
|
||
_PENDING_FORMULA: dict[str, str] = {}
|
||
|
||
|
||
from B09_Estimation.B09_Estimation_KnownGaps import ( # noqa: E402
|
||
known_gap_note,
|
||
pipe_diameter_note,
|
||
)
|
||
|
||
|
||
def pending_formula_note(code: str | None) -> str:
|
||
"""그 공종의 수량 산식이 확정 대기인가 — 맞으면 실을 문구."""
|
||
if not code:
|
||
return ""
|
||
for prefix, note in _PENDING_FORMULA.items():
|
||
if str(code).startswith(prefix):
|
||
return note
|
||
return ""
|
||
|
||
|
||
def _material_row(material: HandoffMaterial, result: BillResult) -> BillRow:
|
||
"""자재 한 줄. 공급 구분이 안 갈렸으면 **어느 쪽에도 안 넣는다**."""
|
||
row = BillRow(
|
||
item_no="",
|
||
level=1,
|
||
code=None,
|
||
name=material.material_name,
|
||
spec=material.spec,
|
||
unit=material.unit,
|
||
quantity=material.total_amount,
|
||
)
|
||
# 할증 사유는 **수량**에 닿는다 — 할증이 곱해진 뒤의 수량이기 때문이다.
|
||
row.add_note("quantity", material.surcharge_note)
|
||
if material.supply_type == SUPPLY_UNKNOWN:
|
||
row.add_note(
|
||
"", "관급·사급이 안 갈렸습니다 — 관급자재대에도, 도급 재료비에도 넣지 않습니다."
|
||
)
|
||
result.missing.append(
|
||
{
|
||
"name": material.display_name,
|
||
"unit": material.unit,
|
||
"quantity": str(material.total_amount),
|
||
"reason": "공급 구분 미정(unknown)",
|
||
}
|
||
)
|
||
return row
|
||
# ⚠ **관급을 「사급」이라 적으면 안 된다** (2026-09-08 메인 창 실측 — 물구멍·야면석이
|
||
# `owner_supplied` 인데 「사급 자재 단가 미확보」로 뜨고 있었다). 갈래마다 **가는 자리도
|
||
# 원천도 다르다** — 관급은 총원가 밖 관급자재대(나라장터), 사급은 도급 재료비(물가지).
|
||
if material.supply_type == SUPPLY_OWNER:
|
||
row.add_note(
|
||
"unit_price_krw",
|
||
"관급 자재 단가 미확보 — 나라장터 목록에 이 품목이 없습니다. "
|
||
"관급자재대(총원가 밖 별도 표기)로 갑니다.",
|
||
)
|
||
reason = "관급 자재 단가 없음"
|
||
else:
|
||
row.add_note(
|
||
"unit_price_krw", "사급 자재 단가 미확보 — 6번 슬롯(적용 단가) 수동 입력 대기."
|
||
)
|
||
reason = "사급 자재 단가 없음(미결 No.18)"
|
||
|
||
result.missing.append(
|
||
{
|
||
"name": material.display_name,
|
||
"unit": material.unit,
|
||
"quantity": str(material.total_amount),
|
||
"reason": reason,
|
||
"supply_type": material.supply_type,
|
||
}
|
||
)
|
||
return row
|
||
|
||
|
||
#: 같은 단위의 다른 표기 — 표기만 다르고 뜻이 같은 것을 「다르다」고 하면 멀쩡한 줄이 멈춘다.
|
||
_UNIT_ALIASES = {
|
||
"㎥": "m3",
|
||
"m³": "m3",
|
||
"M3": "m3",
|
||
"루베": "m3",
|
||
"㎡": "m2",
|
||
"m²": "m2",
|
||
"M2": "m2",
|
||
"㎏": "kg",
|
||
"KG": "kg",
|
||
"톤": "ton",
|
||
"TON": "ton",
|
||
"t": "ton",
|
||
"개소": "개",
|
||
"EA": "개",
|
||
"ea": "개",
|
||
"인": "인",
|
||
"인/일": "인",
|
||
}
|
||
|
||
|
||
def _same_unit(left: str, right: str) -> bool:
|
||
"""두 단위가 같은가. **표기 차이만 흡수하고, 환산은 하지 않는다** — m 과 ㎡ 는 다르다."""
|
||
|
||
def key(text: str) -> str:
|
||
tight = "".join(str(text or "").split())
|
||
return _UNIT_ALIASES.get(tight, tight)
|
||
|
||
return key(left) == key(right)
|