odoo-product-configurator
odoo-product-configurator copied to clipboard
How to Link Multiple Attributes to a Specific Product ?
Hi there, My name is Samuel, from Sussex Campervans . We are currently looking to integrate our sales and manufacturing process in Odoo.
We recently came across the Pledra Module and have been testing certain parts out.
My question is how do you link multiple attributes values to a specific product. Example: Let's say we sell Coke and Fanta: The Configurable Template is called 'Drink' 'Drink' has the attributes 'Drink Type' and 'Drink Size' 'Drink Type' has values: 'Coke' or 'Fanta' 'Drink Size' has values: 'Large' or 'Small' How would I link the the products; ' Large Coke', 'Large Fanta', 'Small Coke', 'Small Fanta' to the attributes. So that if someone were to configure a Large Coke the product Large Coke would be added to the BoM and pricing.
Many Thanks Samuel Sussex Campervans Ltd
Hello Sam,
You can't, the easiest way is to combine both attributes (Type & Size) in one global attribute , i.e. Drink Version with the possible values: Small Coke; Small Fanta; Large Coke ; Large Fanta. On each of thes attribute values you can assign a related product with a seperate photo and price. Success
@samlopezf I just created a module to handle this requirement by extending product_configurator_mrp
:
https://github.com/yostashiro/odoo-product-configurator/tree/10.0-ext-configurator-mrp/product_configurator_mrp_ext
This module also incorporates the content of https://github.com/pledra/odoo-product-configurator/pull/109 for now.
I created a separate module instead of updating product_configurator_mrp
this time, as there seems to be refactoring planned for the configurator modules.
@samlopezf I just created a module to handle this requirement by extending
product_configurator_mrp
: https://github.com/yostashiro/odoo-product-configurator/tree/10.0-ext-configurator-mrp/product_configurator_mrp_extThis module also incorporates the content of #109 for now.
I created a separate module instead of updating
product_configurator_mrp
this time, as there seems to be refactoring planned for the configurator modules.
@yostashiro very good feature, i would like to help for to complete #109 with also your features. what do you think how can we do ?