This question has been flagged
1 Reply
2013 Views

Suppose i have a product with the following attributes:

  • Color

  • Width

  • Height

The customer can only select a color from a predefined set of colors, for example the user can only select either red, green or blue. However, the customer is allowed to select any arbitrary amount of width and height (with minimum and maximum value), there are no predefined sets of width and height to be selected.

This condition leads to some considerations on the efficient way to implement my condition in odoo, such as:

  1. What is the good way to structure those attributes into product variants?

  2. What is the good way to create the Bill of Materials of the product? The most straightforward thing to do is to list all the combination of the product variants and create each of their corresponding Bill of Materials but as i said previously, the width and the height can be of any arbitrary numbers which makes it impractical.

Any help will be appreciated, thanks!

 

Avatar
Discard
Best Answer

Have a look at these 2 modules:

  1. https://apps.odoo.com/apps/modules/9.0/variants_numerical_configurator/

  2. https://apps.odoo.com/apps/modules/9.0/variants_bridge_pricing_numerical/

Avatar
Discard