Skip to content

Commit

Permalink
Fehlendes if hinzugefügt
Browse files Browse the repository at this point in the history
  • Loading branch information
lenilsas committed Dec 18, 2024
1 parent 024eee5 commit 216cbc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/de/jost_net/JVerein/server/ZusatzbetragImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ public boolean isAktiv(Date datum) throws RemoteException

// Wenn das Endedatum gesetzt ist und das Ausführungsdatum liegt hinter
// dem Endedatum: nicht mehr ausführen
if (getFaelligkeit().getTime() > datum.getTime())
if ((getEndedatum() != null && datum.getTime() >= getEndedatum().getTime())
|| getFaelligkeit().getTime() > datum.getTime())
{
return false;
}
Expand Down

0 comments on commit 216cbc2

Please sign in to comment.