1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-26 18:37:12 +00:00

Display the right amount in soge credit detail

This commit is contained in:
Yohann D'ANELLO 2020-09-12 18:36:05 +02:00
parent 2a2ecb2acc
commit f190053e84

View File

@ -295,7 +295,8 @@ class SogeCredit(models.Model):
@property @property
def amount(self): def amount(self):
return sum(transaction.total for transaction in self.transactions.all()) + 8000 return self.credit_transaction.total if self.valid \
else sum(transaction.total for transaction in self.transactions.all()) + 8000
def invalidate(self): def invalidate(self):
""" """