Rappels négatifs K-Fêt: ajustements cosmétiques
This commit is contained in:
parent
d8cabda678
commit
a77cf59b18
3 changed files with 13 additions and 9 deletions
|
@ -31,11 +31,11 @@ class Command(BaseCommand):
|
|||
.filter(last_rappel__lt=now - periodic_delay)
|
||||
.all()
|
||||
)
|
||||
for account in accounts_first_mail:
|
||||
account.send_rappel()
|
||||
self.stdout.write("Mail de rappel pour %s envoyé avec succès." % account)
|
||||
for account in accounts_periodic_mail:
|
||||
account.send_rappel()
|
||||
self.stdout.write("Mail de rappel pour %s envoyé avec succès." % account)
|
||||
for neg in accounts_first_mail:
|
||||
neg.send_rappel()
|
||||
self.stdout.write(f"Mail de rappel pour {neg.account} envoyé avec succès.")
|
||||
for neg in accounts_periodic_mail:
|
||||
neg.send_rappel()
|
||||
self.stdout.write("Mail de rappel pour {neg.account} envoyé avec succès.")
|
||||
if (not accounts_first_mail) and (not accounts_periodic_mail):
|
||||
self.stdout.write("Aucun mail à envoyer.")
|
||||
|
|
|
@ -302,7 +302,11 @@ class AccountNegative(models.Model):
|
|||
"Compte K-Psul négatif",
|
||||
loader.render_to_string(
|
||||
"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"],
|
||||
[self.account.email],
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
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.
|
||||
|
||||
En espérant te revoir très bientôt,
|
||||
|
|
Loading…
Reference in a new issue