Skip to content

Commit

Permalink
Fehler ins SollbuchungZuordnen
Browse files Browse the repository at this point in the history
  • Loading branch information
lenilsas committed Jan 26, 2025
1 parent 96fe123 commit b43c32e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,10 @@ public Object extract(ResultSet rs) throws SQLException, RemoteException
DBIterator<Buchung> buchungen = Einstellungen.getDBService().createList(Buchung.class);
buchungen.addFilter("datum >= ?", dateFromInput);
buchungen.addFilter("datum <= ?", dateUntilInput);
buchungen.addFilter("splittyp != ?", SplitbuchungTyp.HAUPT);
buchungen.addFilter("splittyp != ?", SplitbuchungTyp.GEGEN);
buchungen.addFilter("(splittyp != ? or splittyp is null)",
SplitbuchungTyp.HAUPT);
buchungen.addFilter("(splittyp != ? or splittyp is null)",
SplitbuchungTyp.GEGEN);
buchungen.addFilter("mitgliedskonto is null");
buchungen.setOrder("ORDER BY datum");

Expand Down

0 comments on commit b43c32e

Please sign in to comment.