Skip to content

Commit

Permalink
Bei der Übernahme von Hibiscus-Buchungen werden Verwendungszecke bei …
Browse files Browse the repository at this point in the history
…500 Zeichen abgeschnitten.
  • Loading branch information
NicoB77 committed Apr 19, 2019
1 parent f7123da commit d8d5c92
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/de/jost_net/JVerein/io/Buchungsuebernahme.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ private void importiereUmsatz(Umsatz u, Konto kto) throws Exception
zweck += "\r\n" + s.trim();
}
}
if (zweck.length() > 500)
{
zweck = zweck.substring(0, 500);
}
b.setZweck(zweck);
b.setDatum(u.getDatum());
b.setArt(u.getArt());
Expand Down

0 comments on commit d8d5c92

Please sign in to comment.