fix(sync): scrape AusbildungenListEdit instead of KursteilnehmerListEdit, add selectAlleAnzeige, fix column detection; handle Sachbearbeiter dienstgrad and ignore placeholder handles
This commit is contained in:
@@ -40,9 +40,10 @@ function mapDienstgrad(raw: string): string | null {
|
||||
'ovm': 'Oberverwaltungsmeister',
|
||||
'hvm': 'Hauptverwaltungsmeister',
|
||||
'v': 'Verwalter',
|
||||
'sb': 'Sachbearbeiter',
|
||||
};
|
||||
|
||||
const normalized = raw.trim().toLowerCase();
|
||||
const normalized = raw.trim().toLowerCase().replace(/\*/g, '');
|
||||
|
||||
// Direct abbreviation match
|
||||
if (abbrevMap[normalized]) return abbrevMap[normalized];
|
||||
|
||||
Reference in New Issue
Block a user