fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
15cae7d
)
Don't forget about paypal-only givers.
author
Radek Czajka
<rczajka@rczajka.pl>
Fri, 18 Feb 2022 10:43:49 +0000
(11:43 +0100)
committer
Radek Czajka
<rczajka@rczajka.pl>
Fri, 18 Feb 2022 10:43:49 +0000
(11:43 +0100)
src/club/management/commands/send_receipts.py
patch
|
blob
|
history
diff --git
a/src/club/management/commands/send_receipts.py
b/src/club/management/commands/send_receipts.py
index
bbe1209
..
d29c372
100644
(file)
--- a/
src/club/management/commands/send_receipts.py
+++ b/
src/club/management/commands/send_receipts.py
@@
-7,6
+7,7
@@
from django.core.management.base import BaseCommand, CommandError
from django.utils.timezone import now
from club.models import PayUOrder
from funding.models import Funding
from django.utils.timezone import now
from club.models import PayUOrder
from funding.models import Funding
+from paypal.models import BillingAgreement
class Command(BaseCommand):
class Command(BaseCommand):
@@
-27,6
+28,12
@@
class Command(BaseCommand):
'schedule__email', flat=True
).distinct()
)
'schedule__email', flat=True
).distinct()
)
+ emails.update(
+ BillingAgreement.objects.all().order_by(
+ 'schedule__email').values_list(
+ 'schedule__email', flat=True
+ ).distinct()
+ )
emails.update(
Funding.objects.exclude(email='').filter(
payed_at__year=year
emails.update(
Funding.objects.exclude(email='').filter(
payed_at__year=year
@@
-40,4
+47,7
@@
class Command(BaseCommand):
for email in emails:
print(email)
for email in emails:
print(email)
- PayUOrder.send_receipt(email, year)
+ try:
+ PayUOrder.send_receipt(email, year)
+ except:
+ print('ERROR')