This question has been flagged
3 Replies
5977 Views

When ordering a product in Odoo webshop, the quantity is default 1. Is it possible to have a minimum quantity (higher then 1)?

Avatar
Discard
Best Answer

Hi there,

we have the same problem. Would be great if somebody can give a feedback on that.

Thanks!

Avatar
Discard

how is it possible to do this for some products only? what would be the code to add to the view?

Best Answer

Yes, You can set minimum quantity higher than one for order a product in Odoo webshop.

You have to make change in view "Select Quantity" in Odoo to directly  make changes in the current database. For that, open this view from Settings --> Technical --> User Interface --> Views menu. Search for "Select Quantity" view. Open that view and change below line. In below line, I have set default quantity 5, you can set whatever you want.

<input type="text" class="form-control" data-min="1" name="add_qty" value="5"/>

If you want to directly change in code, than open /addons/website_sale/views/templates.xml file and search "Select Quantity",than change the line as like above changes. If you do modification in website_sale module, you have to upgrade website_sale module after making changes in code.


Avatar
Discard

how is it possible to do this for some products only? what would be the code to add to the view?