mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	link SogeCredit to WEI by creation date instead of civil year
This commit is contained in:
		@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user