Merge branch 'Mails_rappel_kfet' into 'master'

Reminder mails for negative K-Psul accounts

See merge request klub-dev-ens/gestioCOF!492
This commit is contained in:
Martin Pepin 2021-10-22 22:44:55 +02:00
commit 77aa269c90
6 changed files with 100 additions and 0 deletions

View file

@ -29,6 +29,7 @@ adhérents ni des cotisations.
### K-Fêt
- Ajoute de mails de rappels pour les comptes en négatif
- La recherche de comptes sur K-Psul remarche normalement
- Le pointeur de la souris change de forme quand on survole un item d'autocomplétion
- Modification du gel de compte:

View file

@ -204,6 +204,9 @@ MAIL_DATA = {
"REPLYTO": "cof@ens.fr",
},
"rappels": {"FROM": "Le BdA <bda@ens.fr>", "REPLYTO": "Le BdA <bda@ens.fr>"},
"rappel_negatif": {
"FROM": "La K-Fêt <k-fet@ens.fr>",
},
"revente": {
"FROM": "BdA-Revente <bda-revente@ens.fr>",
"REPLYTO": "BdA-Revente <bda-revente@ens.fr>",

View file

@ -0,0 +1,41 @@
"""
Gestion en ligne de commande des mails de rappel K-Fet.
"""
from datetime import timedelta
from django.core.management.base import BaseCommand
from django.utils import timezone
from kfet.models import AccountNegative
class Command(BaseCommand):
help = (
"Envoie un mail de rappel aux personnes en négatif.\n"
"Envoie un mail au bout de 24h, puis un mail par semaine."
)
leave_locale_alone = True
def handle(self, *args, **options):
now = timezone.now()
first_delay = timedelta(days=1)
periodic_delay = timedelta(weeks=1)
accounts_first_mail = (
AccountNegative.objects.filter(start__lt=now - first_delay)
.filter(last_rappel__isnull=True)
.all()
)
accounts_periodic_mail = (
AccountNegative.objects.filter(last_rappel__isnull=False)
.filter(last_rappel__lt=now - periodic_delay)
.all()
)
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.")

View file

@ -0,0 +1,20 @@
# Generated by Django 2.2.17 on 2021-02-23 21:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("kfet", "0079_auto_20210627_0022"),
]
operations = [
migrations.AddField(
model_name="accountnegative",
name="last_rappel",
field=models.DateTimeField(
blank=True, null=True, verbose_name="Mail de rappel envoyé"
),
),
]

View file

@ -1,9 +1,12 @@
import re
from django.conf import settings
from django.contrib.auth.models import User
from django.core.mail import send_mail
from django.core.validators import RegexValidator
from django.db import models, transaction
from django.db.models import F
from django.template import loader
from django.urls import reverse
from django.utils import timezone
from django.utils.translation import ugettext_lazy as _
@ -285,10 +288,34 @@ class AccountNegative(models.Model):
)
start = models.DateTimeField(blank=True, null=True, default=None)
end = models.DateTimeField(blank=True, null=True, default=None)
last_rappel = models.DateTimeField("Mail de rappel envoyé", blank=True, null=True)
class Meta:
permissions = (("view_negs", "Voir la liste des négatifs"),)
def send_rappel(self):
"""
Envoie un mail de rappel signalant que la personne est en négatif.
"""
# On envoie le mail
send_mail(
"Compte K-Psul négatif",
loader.render_to_string(
"kfet/mails/rappel.txt",
context={
"account": self.account,
"neg_amount": -self.account.balance,
"start_date": self.start,
},
),
settings.MAIL_DATA["rappel_negatif"]["FROM"],
[self.account.email],
)
# On enregistre le fait que l'envoi a bien eu lieu
self.last_rappel = timezone.now()
self.save()
return
class CheckoutQuerySet(models.QuerySet):
def is_valid(self):

View file

@ -0,0 +1,8 @@
Bonjour {{ account.first_name }},
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,
--
L'équipe K-Fêt