feat: Statistik komplett neu gestaltet — kuppelunabhängig, feste Spalten

- Statistik gilt jetzt für alle Kuppeln gemeinsam (kein Kuppel-Filter mehr)
- Neue Tabellenstruktur: Besucher (RF/SF/SonF/PrF/ToT/Gesamt) | Anzahl (Führ./Beob./TD/Sonst./BEOS/ToT/Gesamt)
- Anzahl zählt Einträge (COUNT(*)) statt distinkte Tage
- Zusammenfassungskacheln auf 2 reduziert (Besucher + Führungen gesamt)
- Fix: Besucher-State wird zurückgesetzt wenn ArtFuehrung auf TD/BEOS wechselt

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-30 17:29:08 +02:00
parent 102bc441c6
commit d5bd359802
4 changed files with 141 additions and 140 deletions
+2 -2
View File
@@ -174,7 +174,7 @@ export default function MainClient({ kuerzel, beoId, beoName, role }: Props) {
{activeTab === 'statistik' && (
<div className="border-2 border-gray-400 rounded-xl bg-white p-3 print:border-0 print:rounded-none print:p-0">
<div className="flex justify-between items-center mb-2 print:hidden">
<span className="text-sm font-semibold text-gray-600">Statistik {activeKuppel}-Kuppel</span>
<span className="text-sm font-semibold text-gray-600">Statistik (alle Kuppeln)</span>
<button
onClick={() => window.print()}
className="text-sm px-3 py-1.5 bg-gray-200 hover:bg-gray-300 text-gray-700 rounded-lg"
@@ -182,7 +182,7 @@ export default function MainClient({ kuerzel, beoId, beoName, role }: Props) {
🖨 Drucken
</button>
</div>
<Statistik kuppel={activeKuppel} />
<Statistik />
</div>
)}