Add employee active flag
This commit is contained in:
@@ -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')),
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
@@ -197,4 +197,5 @@ export interface Mitarbeiter {
|
||||
nummer: string;
|
||||
nachname: string;
|
||||
vorname: string;
|
||||
aktiv: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user