Parcourir la source

Fix wrong attribute

Alexandre Aubin il y a 7 ans
Parent
commit
4cd0b68279
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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