Skip to content

Commit

Permalink
Fix Abrechnung Eintrittsdatum (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer committed Jun 14, 2024
1 parent 1751159 commit c464561
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/gui/view/AbrechnungSEPAView.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void bind() throws Exception
group.addLabelPair("Abrechnungsmonat", control.getAbrechnungsmonat());
}
group.addLabelPair("Stichtag", control.getStichtag());
group.addLabelPair("Von Eingabedatum", control.getVondatum());
group.addLabelPair("Von Eintrittsdatum", control.getVondatum());
group.addLabelPair("Bis Austrittsdatum", control.getBisdatum());
group.addLabelPair("Zahlungsgrund für Beiträge",
control.getZahlungsgrund());
Expand Down
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/io/AbrechnungSEPA.java
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ private void abrechnenMitglieder(AbrechnungSEPAParam param,
// berücksichtigt, die ab einem bestimmten Zeitpunkt eingetreten sind.
if (param.vondatum != null)
{
list.addFilter("eingabedatum >= ?",
list.addFilter("eintritt >= ?",
new Object[] { new java.sql.Date(param.vondatum.getTime()) });
}
if (Einstellungen.getEinstellung()
Expand Down

0 comments on commit c464561

Please sign in to comment.