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
Line 447 of paypal/express/views.py calls repo.get_shipping_methods with the signature:
def get_shipping_methods(self, user, basket, shipping_address): repo = Repository() return repo.get_shipping_methods( user, basket, shipping_addr=shipping_address)
But in oscar/apps/shipping/repository.py it's given as:
def get_shipping_methods(self, basket, shipping_addr=None, **kwargs):
ie with no "user" argument. I'm not sure which is correct?
The text was updated successfully, but these errors were encountered:
@st8st8 this issue is relevant to django-oscar-paypal application, please report it to corresponding repository issue tracker. Thanks.
Sorry, something went wrong.
I did, three weeks before I filed this one, I'm still awaiting a response... django-oscar/django-oscar-paypal#99
I'm looking at this issue in django-oscar-paypal now, thanks.
django-oscar-paypal
No branches or pull requests
Line 447 of paypal/express/views.py calls repo.get_shipping_methods with the signature:
def get_shipping_methods(self, user, basket, shipping_address):
repo = Repository()
return repo.get_shipping_methods(
user, basket, shipping_addr=shipping_address)
But in oscar/apps/shipping/repository.py it's given as:
API
def get_shipping_methods(self, basket, shipping_addr=None, **kwargs):
ie with no "user" argument. I'm not sure which is correct?
The text was updated successfully, but these errors were encountered: