fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix
[wolnelektury.git]
/
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
acf8bc4
..
92b5dc2
100644
(file)
--- 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 club.models import PayUOrder
from funding.models import Funding
from paypal.models import BillingAgreement
+from pz.models import Payment
class Command(BaseCommand):
class Command(BaseCommand):
@@
-44,6
+45,15
@@
class Command(BaseCommand):
'email', flat=True
).distinct()
)
'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(',')
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')
PayUOrder.send_receipt(email, year, resend=options['resend'])
except:
print('ERROR')
+ raise