Skip to content

Commit

Permalink
Fehler ins SollbuchungZuordnen (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenilsas authored Jan 27, 2025
1 parent 17ab267 commit e4e627a
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 e4e627a

Please sign in to comment.