-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
The option to choose between shipping methods #31
Comments
While Plata does come with the infrastructure to plug in your own shipping backends, it's not of very much help. It definitely is possible, but there's some work involved. What you have to do is this:
That's it! Just ask if you have additional questions or need some guidance. |
Thanks! And can I modify a form in the checkout process? It's not pluggable, as I can see. Just override the /shop/checkout/ url with my own view and do there what ever i need? |
The official way would be to subclass the
Hope it helps! |
I was solving just that, you can found it here: https://github.com/Draciinfo/calendar-eshop/blob/master/calendareshop/shopping/forms.py |
Is there such option in Plata?
I've grepped through the code, and found a field "shipping_method" in the Order model, but I did not find where it is set.
The use case is simple: the user can choose between several shipping methods with different costs, and after that, the costs are added to the bill.
The text was updated successfully, but these errors were encountered: