We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi guys
i finished almost functions
but i have one problems about listener part
when user start to payments
and i got transaction id but how do i know user bought which item ?
i tried find_payment function but that objects only returned None
like this
def print_payment_id(payment_id): payment = facade.find_payment(payment_id) print('payment:',payment, payment.status(),"user:",payment.user, payment.items.name)
so i can't add to some package to user with transaction id
only i can know user have which transaction and status
and objects also can't callable
please check this problems
and your product really helped to me
thank you!
The text was updated successfully, but these errors were encountered:
Hi, sorry for late response, but you can have the items from the paytment. Check that they are saved as reponse to sucessfull notification: https://github.com/renzon/django_pagarme/blob/master/django_pagarme/facade.py#L114
Sorry, something went wrong.
A but I found is not having items for purchases with no accepted states: #131
No branches or pull requests
hi guys
i finished almost functions
but i have one problems about listener part
when user start to payments
and i got transaction id but how do i know user bought which item ?
i tried find_payment function but that objects only returned None
like this
def print_payment_id(payment_id):
payment = facade.find_payment(payment_id)
print('payment:',payment, payment.status(),"user:",payment.user, payment.items.name)
so i can't add to some package to user with transaction id
only i can know user have which transaction and status
and objects also can't callable
please check this problems
and your product really helped to me
thank you!
The text was updated successfully, but these errors were encountered: