Skip to content

Commit

Permalink
issue #183 - fix for credit payoff using is_interest_charge attribute…
Browse files Browse the repository at this point in the history
… set directly
  • Loading branch information
jantman committed Mar 9, 2018
1 parent c681559 commit 62ec8ba
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions biweeklybudget/models/ofx_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ def update_is_fields(self):
}
acct = self.account
for fname in fields.values():
if (
fname == 'is_interest_charge' and
self.name == 'Interest Charged - MANUALLY ENTERED'
):
continue
setattr(self, fname, False)
for acct_attr, self_attr in fields.items():
if (
Expand Down

0 comments on commit 62ec8ba

Please sign in to comment.