Browse Source

change_credit now also loggs with correct signum

master
Niklas Brachmann 11 years ago
parent
commit
65df5e0519
  1. 2
      cash/models.py

2
cash/models.py

@ -32,7 +32,7 @@ class Account(models.Model): @@ -32,7 +32,7 @@ class Account(models.Model):
self.save()
transaction = Transaction(account=self, subject=subject,
amount=(-amount), description=desc)
amount=amount, description=desc)
transaction.save()

Loading…
Cancel
Save