This commit is contained in:
Matthias Hochmeister
2026-03-13 16:05:48 +01:00
parent bb6438a0b9
commit 602d9fd5b9
4 changed files with 7 additions and 3 deletions

View File

@@ -144,6 +144,7 @@ export interface MemberListItem {
// profile fields (null when no profile exists) // profile fields (null when no profile exists)
profile_id: string | null; profile_id: string | null;
mitglieds_nr: string | null; mitglieds_nr: string | null;
fdisk_standesbuch_nr: string | null;
dienstgrad: DienstgradEnum | null; dienstgrad: DienstgradEnum | null;
funktion: FunktionEnum[]; funktion: FunktionEnum[];
status: StatusEnum | null; status: StatusEnum | null;

View File

@@ -169,6 +169,7 @@ class MemberService {
u.is_active, u.is_active,
mp.id AS profile_id, mp.id AS profile_id,
mp.mitglieds_nr, mp.mitglieds_nr,
mp.fdisk_standesbuch_nr,
mp.dienstgrad, mp.dienstgrad,
mp.funktion, mp.funktion,
mp.status, mp.status,
@@ -204,6 +205,7 @@ class MemberService {
is_active: row.is_active, is_active: row.is_active,
profile_id: row.profile_id ?? null, profile_id: row.profile_id ?? null,
mitglieds_nr: row.mitglieds_nr ?? null, mitglieds_nr: row.mitglieds_nr ?? null,
fdisk_standesbuch_nr: row.fdisk_standesbuch_nr ?? null,
dienstgrad: row.dienstgrad ?? null, dienstgrad: row.dienstgrad ?? null,
funktion: row.funktion ?? [], funktion: row.funktion ?? [],
status: row.status ?? null, status: row.status ?? null,

View File

@@ -282,7 +282,7 @@ function Mitglieder() {
<TableRow> <TableRow>
<TableCell sx={{ width: 56 }}>Foto</TableCell> <TableCell sx={{ width: 56 }}>Foto</TableCell>
<TableCell>Name</TableCell> <TableCell>Name</TableCell>
<TableCell>Mitgliedsnr.</TableCell> <TableCell>Stundenbuchnr.</TableCell>
<TableCell>Dienstgrad</TableCell> <TableCell>Dienstgrad</TableCell>
<TableCell>Funktion</TableCell> <TableCell>Funktion</TableCell>
<TableCell>Status</TableCell> <TableCell>Status</TableCell>
@@ -345,10 +345,10 @@ function Mitglieder() {
</Typography> </Typography>
</TableCell> </TableCell>
{/* Mitgliedsnr */} {/* Stundenbuchnr */}
<TableCell> <TableCell>
<Typography variant="body2"> <Typography variant="body2">
{member.mitglieds_nr ?? '—'} {member.fdisk_standesbuch_nr ?? '—'}
</Typography> </Typography>
</TableCell> </TableCell>

View File

@@ -116,6 +116,7 @@ export interface MemberListItem {
is_active: boolean; is_active: boolean;
profile_id: string | null; profile_id: string | null;
mitglieds_nr: string | null; mitglieds_nr: string | null;
fdisk_standesbuch_nr: string | null;
dienstgrad: DienstgradEnum | null; dienstgrad: DienstgradEnum | null;
funktion: FunktionEnum[]; funktion: FunktionEnum[];
status: StatusEnum | null; status: StatusEnum | null;