knowledge(요율): 국민연금 2033년 이후 추정 요율 걷음 — 법 부칙 명시분만 둠

부칙 제4조① 은 2026~2032년만 명시 — 2033년 이후는 그 해 되면 정함(사용자 확정).
정본 rate_from_2033_percent 삭제 · 비고에 짧게 남김 · build_요율.py 는 법 밖 연도가
정본에 미리 채워지면 잡아내는 쪽으로 바꿈 · 시험 2개 추가.
This commit is contained in:
2026-09-21 07:50:13 +09:00
parent 92974984c8
commit 6e9569c47b
3 changed files with 22 additions and 4 deletions
@@ -145,9 +145,9 @@ def check_pension(data: dict, d: Diffs):
max_year_in_law = max(int(y) for y in found)
unseen = [y for y in annual if y > max_year_in_law]
if unseen:
d.note(
f"국민연금보험료 {sorted(unseen)}년 값은 법 부칙(2026~{max_year_in_law}년만 명시)에 없음 — "
f"정본의 rate_from_{unseen[0]}_percent={annual[unseen[0]]} 는 뒤 연도 추정치, 개정 시 재확인 필요"
d.items.append(
f"국민연금보험료: 법 부칙(2026~{max_year_in_law}년만 명시)에 없는 연도 "
f"{sorted(unseen)}가 정본에 있음 — 2033년이 되면 그때 정할 것, 지금 미리 넣지 않음"
)