Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Abrechnung Kursteilnehmer #595

Merged
merged 3 commits into from
Jan 21, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions src/de/jost_net/JVerein/io/AbrechnungSEPA.java
Original file line number Diff line number Diff line change
Expand Up @@ -1128,18 +1128,15 @@ private String writeSollbuchung(int zahlungsweg, IAdresse adress,
Mitgliedskonto mk = null;
String zweck = null;
Rechnung re = null;
if (spArray != null)
if (spArray != null && adress != null && adress instanceof Mitglied)
{
mk = (Mitgliedskonto) Einstellungen.getDBService()
.createObject(Mitgliedskonto.class, null);
mk.setAbrechnungslauf(abrl);
mk.setZahlungsweg(zahlungsweg);

mk.setDatum(datum);
if (adress instanceof Mitglied)
{
mk.setMitglied((Mitglied) adress);
}
mk.setMitglied((Mitglied) adress);
// Zweck wird später gefüllt, es muss aber schon was drin stehen damit
// gespeichert werden kann
mk.setZweck1(" ");
Expand All @@ -1157,7 +1154,7 @@ private String writeSollbuchung(int zahlungsweg, IAdresse adress,

// Rechnungen nur für (Nicht-)Mitglieder unterstützt
// (nicht für Kursteilnehmer)
if (param.rechnung && adress instanceof Mitglied)
tolot27 marked this conversation as resolved.
Show resolved Hide resolved
if (param.rechnung)
{
Formular form = param.rechnungsformular;
if (form == null)
Expand Down Expand Up @@ -1217,6 +1214,11 @@ private String writeSollbuchung(int zahlungsweg, IAdresse adress,
}
mk.store();
}
if (spArray != null && adress != null && adress instanceof Kursteilnehmer)
{
zweck = spArray.get(0).getZweck();
summe = -((Kursteilnehmer) adress).getBetrag();
tolot27 marked this conversation as resolved.
Show resolved Hide resolved
}

if (zahlungsweg == Zahlungsweg.BASISLASTSCHRIFT)
{
Expand Down
Loading