Skip to content

Commit

Permalink
Update AbrechnungSEPA.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann Maierhofer committed Jan 21, 2025
1 parent 21e6fcd commit ce1ad84
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/de/jost_net/JVerein/io/AbrechnungSEPA.java
Original file line number Diff line number Diff line change
Expand Up @@ -1216,9 +1216,8 @@ private String writeSollbuchung(int zahlungsweg, IAdresse adress,
}
if (spArray != null && adress != null && adress instanceof Kursteilnehmer)
{
Kursteilnehmer kt = (Kursteilnehmer) adress;
zweck = getVerwendungszweckName(kt, kt.getVZweck1());
summe = -kt.getBetrag();
zweck = spArray.get(0).getZweck();
summe = -((Kursteilnehmer) adress).getBetrag();
}

if (zahlungsweg == Zahlungsweg.BASISLASTSCHRIFT)
Expand Down

0 comments on commit ce1ad84

Please sign in to comment.