mirror of https://gitlab.crans.org/bde/nk20
Merge branch 'SogeCreditDate' into 'main'
link SogeCredit to WEI by creation date instead of civil year See merge request bde/nk20!206
This commit is contained in:
commit
84b16ab603
|
@ -310,8 +310,8 @@ class SogeCredit(models.Model):
|
|||
amount = sum(transaction.total for transaction in self.transactions.all())
|
||||
if 'wei' in settings.INSTALLED_APPS:
|
||||
from wei.models import WEIMembership
|
||||
if not WEIMembership.objects.filter(club__weiclub__year=datetime.date.today().year, user=self.user)\
|
||||
.exists():
|
||||
if not WEIMembership.objects\
|
||||
.filter(club__weiclub__year=self.credit_transaction.created_at.year, user=self.user).exists():
|
||||
# 80 € for people that don't go to WEI
|
||||
amount += 8000
|
||||
return amount
|
||||
|
|
Loading…
Reference in New Issue