from django.utils.timezone import now
from club.models import PayUOrder
from funding.models import Funding
+from paypal.models import BillingAgreement
class Command(BaseCommand):
'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
for email in emails:
print(email)
- PayUOrder.send_receipt(email, year)
+ try:
+ PayUOrder.send_receipt(email, year)
+ except:
+ print('ERROR')