initial commit

This commit is contained in:
2025-09-02 08:21:00 +02:00
parent 073ced647c
commit f212f9feb3
2 changed files with 90 additions and 30 deletions
+2 -2
View File
@@ -105,11 +105,11 @@ int? minutesFromHHMMSS(String? s) {
}
// Abwesenheitscodes und Labels
const List<String> kAbsenceCodes = ['GZ', 'K', 'U', 'SU', 'T'];
const List<String> kAbsenceCodes = ['G', 'K', 'U', 'SU', 'T'];
String codeLabel(String? code) {
switch (code) {
case 'GZ': return 'Gleitzeit';
case 'G': return 'Gleitzeit';
case 'K': return 'Krankenstand';
case 'U': return 'Urlaub';
case 'SU': return 'Sonderurlaub';