「반쪽 단가」 표시가 여태 **이름을 카탈로그에서 못 찾은 줄**만 잡고 있었음. 그물 밖에 둘이 더 있었고, 둘 다 **금액이 서 있는 줄**이라 표시가 없으면 완성된 값으로 읽혔음. - 기초잡석 12-25 — 원문에 「운반 | 덤프트럭(15ton)」 줄이 있는데 우리 단가에 없음. ⚠ 사유를 「원문이 값을 안 줌」으로 뭉뚱그리지 않음 — 그 값은 품셈 10-12(덤프운반)가 **운반거리로** 내는 것이라 **거리가 정해지면 풀림**. 「영영 막힘」과 「곧 풀림」은 사용자가 보는 뜻이 다름 - 기초잡석 소할 — 원문이 「**브레이커 사용할 때 제외**」라 한 줄인데 지금은 무조건 붙음. ⚠ 조건부 열두 줄 중 **이것만 금액이 서 있음**(다른 열한 줄은 붙는 쪽, 이것은 빠지는 쪽) - 규준틀 11-2·11-3 — 지금 값은 **인력 품만**. 손율은 원문에 있음(비탈 50% · 수평 80%) ⚠ 앞 보고를 정정함 — 규준틀은 「표시가 아무것도 없다」고 했으나 **B08 인계가 이미 「재료량은 [주]④ 설계수량에 따른다라 미확보」를 싣고 있었음.** 화면 문구 뒤쪽이 잘려 안 보였던 것임. 그래서 그 말은 되풀이하지 않고 **B09 쪽에서만 아는 것**만 보탬. 「잘린 자리를 사유가 없는 자리로 읽지 말 것」을 주석에 남김 검증: pytest 300 통과(신규 5) Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
451 lines
19 KiB
Python
451 lines
19 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.note = 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.note = f"묶음 {len(item.composite_parts)}조각 합계"
|
||
return row
|
||
|
||
|
||
def _excluded_row(item: HandoffWorkItem) -> BillRow:
|
||
"""`in_bill=false` 줄. **수량만 보이고 단가·금액을 안 붙인다.**
|
||
|
||
세 갈래가 섞여 온다 — 갈라 적지 않으면 사용자가 할 일을 못 읽는다.
|
||
· **검산용**(보정량계·무대) — 합계 검산에만 쓰는 줄
|
||
· **막힌 줄**(`blocked_kind` 있음) — 입력이나 원단위를 기다림
|
||
· ⚠ **여기서 세지 않는 줄**(`blocked_kind` 없음) — 「다른 표에서 이미 섬」·
|
||
「이 노선엔 없음」. **이것을 할 일 목록에 얹으면 결국 이중계상이 된다.**
|
||
"""
|
||
return 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,
|
||
note=item.blocked_reason
|
||
or item.in_bill_reason
|
||
or "합계 검산용 줄 — 금액을 매기지 않습니다.",
|
||
)
|
||
|
||
|
||
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.note = " / ".join(part for part in (row.note, item.spec_class_basis) if part)
|
||
if item.application_ratio_pct is not None:
|
||
# ⚠ 곱하지 않는다 — B08 이 이미 곱한 값이다. 산출근거로만 적는다.
|
||
row.note = f"반영률 {item.application_ratio_pct}% 적용 후 수량"
|
||
|
||
if not item.in_bill:
|
||
# 검산용 줄 — 수량은 보이되 **단가를 안 붙인다**(PLAN 8-7 ㉡ 와 같은 성격).
|
||
row.quantity = item.quantity
|
||
row.note = item.in_bill_reason or "합계 검산용 줄 — 금액을 매기지 않습니다."
|
||
result.excluded.append(row)
|
||
return row
|
||
|
||
if item.blocked_reason:
|
||
# B08 이 「왜 못 골랐는지」를 적어 보냈다 — **그 문구를 그대로** 보인다.
|
||
# 사용자가 입력하면 풀리는 것(`input_missing`)과 우리가 만들어야 하는 것을
|
||
# 가르지 않으면, 사용자가 「후보를 고르면 되나」로 잘못 읽는다.
|
||
row.note = 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.note = f"이 공종엔 일위대가가 없고 한 층 아래에 있습니다 — 후보: {names}"
|
||
reason = f"일위대가가 하위 공종에 있음(후보 {len(children)}건)"
|
||
else:
|
||
# ⚠ 「아직 안 만든 것」과 「성분이 빠져 못 세운 것」은 **할 일이 다르다**.
|
||
# 뭉뚱그리면 사용자가 무엇을 기다려야 하는지 못 읽는다(2026-09-08 산마루측구:
|
||
# 표에 수량 칸이 비어 있고 「철근가공조립(간단)의 30 %」처럼 참조로만 적힌 자리).
|
||
gap = unit_prices.component_gaps.get(node.code)
|
||
if gap:
|
||
row.note = f"성분이 빠져 단가를 못 세웠습니다 — {gap}"
|
||
reason = f"성분 미확보 — {gap}"
|
||
else:
|
||
row.note = "일위대가가 아직 없습니다 — 금액을 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.note = 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.note = (
|
||
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.note = " / ".join(
|
||
part
|
||
for part in (
|
||
row.note,
|
||
f"단가의 기준 단위가 표에 없습니다 — B08 수량 단위({row.unit})와 같다고 "
|
||
"보고 곱했습니다. 확인 필요.",
|
||
)
|
||
if part
|
||
)
|
||
|
||
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.note = (
|
||
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.note = " / ".join(part for part in (row.note, pending) if part)
|
||
|
||
# ⚠ **원문에는 있는데 단가에 못 실린 몫**도 같은 자리에서 말한다. 금액이 서 있는 줄이라
|
||
# 표시가 없으면 완성된 값으로 읽힌다(규준틀 둘이 인력만으로 492만원이었다).
|
||
gap = known_gap_note(node.code)
|
||
if gap:
|
||
row.note = " / ".join(part for part in (row.note, gap) if part)
|
||
|
||
# 쓰인 차례를 기억한다 — 실무 참조번호(「단산 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
|
||
|
||
|
||
#: 수량 산식이 **사용자 확정을 기다리는** 공종 — 금액은 세우되 그 사실을 함께 싣는다.
|
||
#:
|
||
#: ⚠ **값을 우리가 바꾸지 않는다.** 어느 쪽으로 갈지는 설계 판단이다(계획서 4-12 3단계).
|
||
#:
|
||
#: ⚠ **2026-09-09 문구를 고쳤다.** 처음에는 「실무는 기초만 세고 우리는 벽 전체를 센다」로
|
||
#: 적었는데 **그것이 틀렸다** — 우리 식은 정본(기초 0.45 + 비탈) 그대로이고, 6.6배 차이는
|
||
#: **소광리 시트가 비탈 터파기 줄을 안 적어서** 난 것이다. 다투는 자리는 「우리 식이
|
||
#: 맞는가」가 아니라 **「비탈 터파기를 셀 것인가」**다.
|
||
_PENDING_FORMULA: dict[str, str] = {
|
||
"FP-09-13": (
|
||
"⚠ 비탈 터파기를 셀지 확정 대기입니다 — 정본은 세고(기초 0.45 + 비탈) 다른 실무 "
|
||
"시트는 안 셉니다. 안 세는 쪽으로 확정되면 이 줄 금액이 약 1/7 로 줄어듭니다."
|
||
),
|
||
"FP-09-14": (
|
||
"⚠ 되메우기도 같은 확정에 걸립니다 — 비탈 터파기를 안 세면 되메울 부피도 함께 줍니다."
|
||
),
|
||
"FP-09-15": ("⚠ 잔토처리도 같은 확정에 걸립니다 — 터파기와 되메우기의 차라 같은 뿌리입니다."),
|
||
}
|
||
|
||
|
||
from B09_Estimation.B09_Estimation_KnownGaps import known_gap_note # noqa: E402
|
||
|
||
|
||
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,
|
||
note=material.surcharge_note,
|
||
)
|
||
if material.supply_type == SUPPLY_UNKNOWN:
|
||
row.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.note = (
|
||
row.note
|
||
or "관급 자재 단가 미확보 — 나라장터 목록에 이 품목이 없습니다. "
|
||
"관급자재대(총원가 밖 별도 표기)로 갑니다."
|
||
)
|
||
reason = "관급 자재 단가 없음"
|
||
else:
|
||
row.note = row.note or "사급 자재 단가 미확보 — 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)
|