awesto / django-shop

A Django based shop system
http://www.django-shop.org
BSD 3-Clause "New" or "Revised" License
3.17k stars 1.04k forks source link

Checkout form, sending my order #806

Closed markusmo closed 4 years ago

markusmo commented 4 years ago

I am logged in as a customer and I am checking out my cart, but at step 4, the last step, the proceed button which should create an order and so forth will not let me purchase my order.

So I am quite confused, as there is no exception and I also did not change that particular part of the ordering process.

jrief commented 4 years ago

Is there any error logged in the browser console? The purchase button interacts with JavaScript.

markusmo commented 4 years ago

Sadly not. There are no JS errors or errors when sending HTTP-Requests:

requests

Also there are no errors on webserver side.

haricot commented 4 years ago

If it helps: With poetry.lock: django-shop==1.2 and django-rest-framework==3.9.3 and drf-haystack==1.8.6: Step 4 is passed: with 'Pay in advance' and 'Postal shipping', i can see the button "purchace now" and if i click, I can see the view "thank you for your order"

markusmo commented 4 years ago

I just checked my dependencies and my only difference is that I have djangorestframework==3.10.3 I also updated my django-shop to 1.1.3 but that did not change a thing.

markusmo commented 4 years ago

Ok, I reinstalled all my dependencies and I managed to get it working. The mistake I made was: my payment provider had a identifier property defined, after I removed it, it worked fine...