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)
|
.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.")
|
||||||
|
|
|
@ -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],
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue