From 723591cbce96d8169259ff19627a46f145ce0c76 Mon Sep 17 00:00:00 2001 From: Jan Novak Date: Sun, 24 May 2026 21:56:41 +0200 Subject: [PATCH] feat(fees): update adult monthly rates for 2026-05 through 2026-08 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2026-05: 700 → 450 CZK - 2026-06, 07, 08: 600 CZK (new months) Changes are mirrored in both Python (scripts/attendance.py) and Go (go/internal/domain/fees/fees.go). Co-Authored-By: Claude Sonnet 4.6 --- go/internal/domain/fees/fees.go | 2 +- scripts/attendance.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/go/internal/domain/fees/fees.go b/go/internal/domain/fees/fees.go index 2ebee80..1158ee4 100644 --- a/go/internal/domain/fees/fees.go +++ b/go/internal/domain/fees/fees.go @@ -11,7 +11,7 @@ const ( var AdultFeeMonthlyRate = map[string]int{ "2025-09": 750, "2025-10": 750, "2025-11": 750, "2025-12": 750, "2026-01": 750, "2026-02": 750, "2026-03": 350, - "2026-04": 700, "2026-05": 700, + "2026-04": 700, "2026-05": 450, "2026-06": 600, "2026-07": 600, "2026-08": 600, } // CalculateFee returns the adult fee in CZK for attendanceCount practices in diff --git a/scripts/attendance.py b/scripts/attendance.py index adda417..c858b2d 100644 --- a/scripts/attendance.py +++ b/scripts/attendance.py @@ -21,7 +21,10 @@ ADULT_FEE_MONTHLY_RATE = { "2026-02": 750, "2026-03": 350, "2026-04": 700, - "2026-05": 700, + "2026-05": 450, + "2026-06": 600, + "2026-07": 600, + "2026-08": 600, } JUNIOR_FEE_DEFAULT = 500 # CZK for 2+ practices