fix: use one-decimal percentage format in Sheet 1 (0.0% instead of 0%)

Shows "0,8%" instead of "1%" for small ratios like Ablehnungen/Erstberatungen.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
CCS Admin 2026-02-24 09:32:32 +00:00
parent 4467e1b1cb
commit 8502c7a7fb

View file

@ -30,7 +30,7 @@ HEADER_FILL = PatternFill(start_color="FFD9D9D9", end_color="FFD9D9D9", fill_typ
BOLD_FONT = Font(bold=True)
HEADER_FONT = Font(bold=True, name="Calibri", size=11)
TITLE_FONT = Font(bold=True, name="Calibri", size=12)
PCT_FORMAT = "0%"
PCT_FORMAT = "0.0%"
# Fallgruppe keys in canonical order
FALLGRUPPEN = ["onko", "kardio", "intensiv", "galle", "sd"]