spookylukey / django-paypal

A pluggable Django application for integrating PayPal Payments Standard or Payments Pro
MIT License
729 stars 208 forks source link

Listing the payments #240

Closed abolix closed 3 years ago

abolix commented 3 years ago

I'm trying to list all of the PayPal IPNs transactions in my website so right now i'm using this code : transactions = PayPalIPN.objects.all().exclude(payment_status__exact='').exclude(flag__exact=True).order_by('-payment_date')

there is few problems with this code :

how can I solve these and show all of transactions clearly ?

spookylukey commented 3 years ago

I'm sorry, that is a general Django question, you should ask on a Django users forum, this is an issue tracker for bugs in django-paypal.