Add employee active flag

This commit is contained in:
2026-06-09 11:40:09 +02:00
parent b8da2a821f
commit f7401ccf18
8 changed files with 8 additions and 4 deletions
+1
View File
@@ -534,6 +534,7 @@ export class AgrarmonitorConnector implements AgrarmonitorConnectorResult {
nummer: cells[0]?.textContent?.trim() ?? '',
nachname: cells[1]?.textContent?.trim() ?? '',
vorname: cells[2]?.textContent?.trim() ?? '',
aktiv: Boolean(row.querySelector('td.toggle .fa-check, td.toggle .text-green')),
};
});
}
+1
View File
@@ -197,4 +197,5 @@ export interface Mitarbeiter {
nummer: string;
nachname: string;
vorname: string;
aktiv: boolean;
}