Skip to content

Commit

Permalink
Versionsnummer / Fehlermeldung
Browse files Browse the repository at this point in the history
Interne Versionsnummer an Release anpassen und Fehlermeldung, wenn
Finanzkonto für Konto nicht gesetzt ist.
  • Loading branch information
timpritlove committed Jul 24, 2018
1 parent a8b844b commit bc61927
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MoneyMonkey.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ local reverseOrder = false

-- Exportformat bei MoneyMoney anmelden

Exporter{version = 1.00,
Exporter{version = 1.4,
format = MM.localizeText("Buchungssätze"),
fileExtension = "csv",
reverseOrder = reverseOrder,
Expand Down Expand Up @@ -256,7 +256,7 @@ function WriteTransactions (account, transactions)

-- Finanzkonto für verwendetes Bankkonto ermitteln

if ( Bankkonto.Finanzkonto == "" ) then
if ( Bankkonto.Finanzkonto == "" or Bankkonto.Finanzkonto == nil) then
error ( string.format("Kein Finanzkonto für Konto %s gesetzt.\n\nBitte Feld 'Finanzkonto' in den benutzerdefinierten Feldern in den Einstellungen zum Konto setzen.", account.name ), 0)
end

Expand Down

0 comments on commit bc61927

Please sign in to comment.