Fix small bug in the way we handle the transaction pre-balance in case of fees

This commit is contained in:
Gerwin van der Lugt 2020-03-01 20:22:04 +01:00
parent 6511fcec1a
commit 0e60b023ff
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class RevolutCsvReader:
iban=iban,
description=description,
datetime=completed_datetime,
before_balance=balance - amount,
before_balance=balance - amount - fee,
after_balance=balance - fee)
batch = [transaction_without_fee]