Magento 1.7 PHP – Update Product Quantity on Checkout Page

magento-1.7PHP

I want to provide functionality to update product quantity on checkout page of magento. so if user want to update the product quantity he can do it on checkout page rather to go back on cart page.

Best Answer

Updating the quantity means that the full quote has to be recalculated invalidating the chosen payment and shipment methods. This will require the user to go back to these steps and choose the new information.

It can probably be done using a custom controller that adds the new quantity then calling that over AJAX for example but after every quantity change you will have to send the user back to the shipment method step or at least prevent him from checking out so he can move back himself. All in all I highly doubt it will be very user friendly.