Ignore club notes that are used by the BDE for particular events
This commit is contained in:
parent
c4f128786d
commit
4471307b37
|
@ -32,9 +32,9 @@ class Command(BaseCommand):
|
|||
notes = Note.objects.filter(
|
||||
Q(noteuser__user__memberships__date_end__gte=
|
||||
date.today() - timedelta(days=int(365.25 * options['add_years'])))
|
||||
| Q(noteclub__isnull=False),
|
||||
| (Q(noteclub__isnull=False) & ~Q(noteclub__club__name__icontains='- BDE')),
|
||||
balance__lte=-options["negative_amount"],
|
||||
is_active=True,
|
||||
is_active=True,
|
||||
).order_by('balance').distinct().all()
|
||||
|
||||
if options["spam"]:
|
||||
|
|
Loading…
Reference in New Issue