Rappels négatifs K-Fêt: ajustements cosmétiques

This commit is contained in:
Martin Pépin 2021-10-22 22:36:30 +02:00
parent d8cabda678
commit a77cf59b18
No known key found for this signature in database
GPG key ID: E7520278B1774448
3 changed files with 13 additions and 9 deletions

View file

@ -31,11 +31,11 @@ class Command(BaseCommand):
.filter(last_rappel__lt=now - periodic_delay) .filter(last_rappel__lt=now - periodic_delay)
.all() .all()
) )
for account in accounts_first_mail: for neg in accounts_first_mail:
account.send_rappel() neg.send_rappel()
self.stdout.write("Mail de rappel pour %s envoyé avec succès." % account) self.stdout.write(f"Mail de rappel pour {neg.account} envoyé avec succès.")
for account in accounts_periodic_mail: for neg in accounts_periodic_mail:
account.send_rappel() neg.send_rappel()
self.stdout.write("Mail de rappel pour %s envoyé avec succès." % account) self.stdout.write("Mail de rappel pour {neg.account} envoyé avec succès.")
if (not accounts_first_mail) and (not accounts_periodic_mail): if (not accounts_first_mail) and (not accounts_periodic_mail):
self.stdout.write("Aucun mail à envoyer.") self.stdout.write("Aucun mail à envoyer.")

View file

@ -302,7 +302,11 @@ class AccountNegative(models.Model):
"Compte K-Psul négatif", "Compte K-Psul négatif",
loader.render_to_string( loader.render_to_string(
"kfet/mails/rappel.txt", "kfet/mails/rappel.txt",
context={"account": self.account, "start_date": self.start}, context={
"account": self.account,
"neg_amount": -self.account.balance,
"start_date": self.start,
},
), ),
settings.MAIL_DATA["rappel_negatif"]["FROM"], settings.MAIL_DATA["rappel_negatif"]["FROM"],
[self.account.email], [self.account.email],

View file

@ -1,8 +1,8 @@
Bonjour {{ account.first_name }}, Bonjour {{ account.first_name }},
Nous te rappelons que tu es en négatif de {{ account.balance }}€ depuis le {{ start_date }}. Nous te rappelons que tu es en négatif de {{ neg_amount }}€ depuis le {{ start_date }}.
N'oublie pas de régulariser ta situation au plus vite. N'oublie pas de régulariser ta situation au plus vite.
En espérant te revoir très bientôt, En espérant te revoir très bientôt,
-- --
L'équipe K-Fêt L'équipe K-Fêt