Fix note list when daily reports are sent
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
parent
8ec7d68a16
commit
7676f69216
|
@ -20,8 +20,8 @@ class Command(BaseCommand):
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
activate('fr')
|
activate('fr')
|
||||||
if "notes" in options:
|
if 'notes' in options and options['notes']:
|
||||||
notes = NoteUser.objects.filter(pk__in=options["notes"]).all()
|
notes = NoteUser.objects.filter(pk__in=options['notes']).all()
|
||||||
else:
|
else:
|
||||||
notes = NoteUser.objects.filter(
|
notes = NoteUser.objects.filter(
|
||||||
user__memberships__date_end__gte=timezone.now(),
|
user__memberships__date_end__gte=timezone.now(),
|
||||||
|
|
Loading…
Reference in New Issue