Skip to content

Commit

Permalink
Vorgemerkte Buchungen nicht exportieren
Browse files Browse the repository at this point in the history
  • Loading branch information
timpritlove committed Mar 19, 2018
1 parent 8b9e6a7 commit e6094d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MoneyMonkey.lua
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,12 @@ function WriteTransactions (account, transactions)
Buchung.Notiz = ((Umsatz.Kontonummer ~= "") and ( "(" .. Umsatz.Kontonummer .. ") ") or "") -- .. "[" .. Umsatz.Kategorie .. "] {" .. Umsatz.Typ .. "}"


-- Vorgemerkte Buchungen nicht exportieren

if ( transaction.booked == false) then
Exportieren = false
end

-- Buchungen mit Betrag 0,00 nicht exportieren

if ( transaction.amount == 0) then
Expand Down

0 comments on commit e6094d5

Please sign in to comment.