Skip to content

Commit

Permalink
Feature Sterbedatum in Mitgliedertabelle (#207)
Browse files Browse the repository at this point in the history
* Feature Sterbedatum in Mitgliedertabelle

* nur wenn Sterbetag aktiv
  • Loading branch information
JohannMaierhofer committed Apr 16, 2024
1 parent 8ac3e5e commit 6973072
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/de/jost_net/JVerein/util/MitgliedSpaltenauswahl.java
Expand Up @@ -43,7 +43,7 @@ public MitgliedSpaltenauswahl()
{
if (Einstellungen.getEinstellung().getExterneMitgliedsnummer())
{
add("externe Mitgliedsnummer", "externemitgliedsnummer", false, false);
add("Externe Mitgliedsnummer", "externemitgliedsnummer", false, false);
}
}
catch (RemoteException re)
Expand Down Expand Up @@ -100,6 +100,19 @@ public MitgliedSpaltenauswahl()
add("Kündigung", "kuendigung", false,
new DateFormatter(new JVDateFormatTTMMJJJJ()), Column.ALIGN_AUTO,
false);
try
{
if (Einstellungen.getEinstellung().getSterbedatum())
{
add("Sterbedatum", "sterbetag", false,
new DateFormatter(new JVDateFormatTTMMJJJJ()), Column.ALIGN_AUTO,
false);
}
}
catch (RemoteException re)
{
//
}
add("Eingabedatum", "eingabedatum", false,
new DateFormatter(new JVDateFormatTTMMJJJJ()), Column.ALIGN_AUTO, true);
add("Letzte Änderung", "letzteaenderung", false,
Expand Down

0 comments on commit 6973072

Please sign in to comment.