Browse Source

Fix wrong attribute

Alexandre Aubin 7 years ago
parent
commit
4cd0b68279
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/billing/models.py

+ 1 - 1
coin/billing/models.py

@@ -304,7 +304,7 @@ class Invoice(models.Model):
             **kwargs)
 
         # Sauvegarde en base la date du dernier envoi de mail de relance
-        self.date_last_call_for_membership_fees_email = timezone.now()
+        self.date_last_reminder_email = timezone.now()
         self.save()
         return True