X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/dbc646e3eb996cb0134b6166be3055dbb642e1ca..eaba19e725b49fdf4efc858604a7b9d70d27f59f:/src/club/management/commands/send_receipts.py

diff --git a/src/club/management/commands/send_receipts.py b/src/club/management/commands/send_receipts.py
index 69cc2f98c..92b5dc2c4 100644
--- a/src/club/management/commands/send_receipts.py
+++ b/src/club/management/commands/send_receipts.py
@@ -8,6 +8,7 @@ from django.utils.timezone import now
 from club.models import PayUOrder
 from funding.models import Funding
 from paypal.models import BillingAgreement
+from pz.models import Payment
 
 
 class Command(BaseCommand):
@@ -39,11 +40,20 @@ class Command(BaseCommand):
         )
         emails.update(
             Funding.objects.exclude(email='').filter(
-                payed_at__year=year
+                completed_at__year=year
             ).order_by('email').values_list(
                 'email', flat=True
             ).distinct()
         )
+        emails.update(
+            Payment.objects.exclude(debit__email='').filter(
+                realised=True,
+                is_dd=True,
+                booking_date__year=year,
+            ).order_by('debit__email').values_list(
+                'debit__email', flat=True
+            ).distinct()
+        )
 
         if options['emails']:
             emails = options['emails'].split(',')
@@ -54,3 +64,4 @@ class Command(BaseCommand):
                 PayUOrder.send_receipt(email, year, resend=options['resend'])
             except:
                 print('ERROR')
+                raise