feat: Stunden-Auszahlungen in /mobile Profil-Screen

- Überstunden-Saldo (Gesamt/Entnommen/Verfügbar) als 3-spaltige Karte
- Letzte 5 Auszahlungen mit Stunden (lila), Abrechnungsmonat, Notiz
- Parallel-Load mit Overtime-Balance beim Profil-Laden

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-25 22:22:08 +02:00
parent a63b0e835f
commit 549783a05e
2 changed files with 105 additions and 3 deletions
+21
View File
@@ -1470,3 +1470,24 @@ Keine Commits in dieser Session.
- frontend/src/pages/CompanySettingsPage.tsx | 88 +++++++++++++++++++++++++++++-
---
## 2026-05-25 22:17 22:18 (1m)
**Beschreibung:** Claude Code Session
**Projekt:** timemaster
### Commits
- a63b0e8 feat: Stunden-Auszahlung Feature (/hr/payouts)
### Geänderte Dateien
- DEVLOG.md | 136 ++++++
- backend/app/main.py | 2 +
- backend/app/models/__init__.py | 2 +
- backend/app/models/hours_payout.py | 45 ++
- backend/app/routers/hours_payouts.py | 189 +++++++++
- backend/app/schemas/hours_payout.py | 33 ++
- backend/migrations/versions/0030_hours_payouts.py | 36 ++
- frontend/src/App.tsx | 2 +
- frontend/src/components/Layout.tsx | 1 +
- frontend/src/pages/HoursPayoutPage.tsx | 484 ++++++++++++++++++++++
- frontend/src/types/hoursPayout.ts | 26 ++
---