Skip to content

Commit

Permalink
Merge branch 'master' into rechnung_neu
Browse files Browse the repository at this point in the history
  • Loading branch information
lenilsas committed Jan 6, 2025
2 parents 36daafd + 00c6df6 commit 9a7de30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/de/jost_net/JVerein/gui/control/BuchungsControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1032,6 +1032,11 @@ private Konto getSelectedKonto() throws ApplicationException
try
{
Konto konto = (Konto) getKonto(false).getValue();
if (konto == null)
{
throw new ApplicationException(
"Kein Konto Ausgewählt. Ggfs. erst unter Buchführung->Konten ein Konto anlegen.");
}
settings.setAttribute(settingsprefix + "kontoid", konto.getID());
return konto;
}
Expand Down
4 changes: 4 additions & 0 deletions src/de/jost_net/JVerein/io/DefaultZusatzbetraegeImport.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@ else if (list.size() > 1)
anz, mitgliedIdString));
fehlerInDaten = true;
}
catch (SQLException e)
{
//
}
try
{
String buchungsart = results.getString("Buchungsart");
Expand Down

0 comments on commit 9a7de30

Please sign in to comment.