-
-
Notifications
You must be signed in to change notification settings - Fork 486
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] mrp_bom_attribute_match: pre-commit stuff
- Loading branch information
1 parent
25aad9f
commit e8ebb9c
Showing
9 changed files
with
216 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["whool"] | ||
build-backend = "whool.buildapi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- Ooops404 \<<https://ooops404.com>\> | ||
- Ilyas | ||
- [Camptocamp](https://www.camptocamp.com) | ||
- Iván Todorovich \<<ivan.todorovich@camptocamp.com>\> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
This module addresses the BoM case where the product to manufacture has | ||
one attribute with tens or hundreds of values (usually attribute | ||
"color", eg: "Configurable Desk" can be produced in 900 different | ||
colors). | ||
|
||
Creating a dynamic BoM currently requires adding one BoM line for each | ||
attribute value to match component variant with attribute value (eg: | ||
component "Desk board (Green)" to be applied to variant "Green"). | ||
|
||
This has 3 downsides: | ||
|
||
- BoM lines proliferation (more error prone) | ||
- Difficult to update in case a new attribute value (new color paint) is | ||
added | ||
- Difficult to update in case base component changes. | ||
|
||
This module allows to use a product template as component in BoM lines, | ||
automatically matching component variant to use in MO line with the | ||
attribute value selected for manufacture. | ||
|
||
Eg: Product template "Desk Board" is added to BoM line for product | ||
"Configurable Desk"; match is made on attribute "Color". In MO, if | ||
product to manufacture is "Configurable Desk (Steel, Pink)", MO line | ||
will have component "Desk Board (Pink)". | ||
|
||
Using the same BoM, if product to manufacture is "Configurable Desk | ||
(Steel, Yellow)", MO line will have component "Desk Board (Yellow)". | ||
|
||
The flow is valid also if the Component (Product Template) has more than | ||
one attribute matching the product to manufacture; in this case, on MO | ||
line the component variant will be the one matching multiple attribute | ||
values for the product to manufacture. | ||
|
||
Various checks are in place to make sure this flow is not disrupted: | ||
|
||
- user cannot add a product in field "Component (Product Template)" | ||
which: | ||
|
||
> does not have matching attributes with product to manufacture | ||
> | ||
> has a different variant-generating attribute than the product to | ||
> manufacture | ||
- Adding a new variant-generating attribute to a product used as | ||
"Component (Product Template)" raises an error if the attribute is not | ||
included in all the products to manufacture where component is | ||
referenced. | ||
|
||
- Removing an attribute used for BoM attribute matching from product to | ||
manufacture raises an error. | ||
|
||
- On a BoM line with Component (Product Template) set, an attribute | ||
value of attributes referenced in "Match on attribute" field cannot be | ||
used in field "Apply to variant". | ||
|
||
- If attribute value for matching attribute in manufactured product is | ||
not present in component (product template), the BoM line is skipped | ||
in MO. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Using this module you can have dynamic components of a BOM. It will | ||
allow you to have only 1 line in the BOM if you have hundreds of | ||
attribute values for manufacturing product and hundreds of attributes | ||
values of component (material). | ||
|
||
How to use | ||
|
||
> 1. Create a product to produce e.g. Desk. | ||
> 2. Set 1 attribute (e.g. Color). And select possible values for it. | ||
> 3. Create a component product (material) e.g. Plastic. | ||
> 4. Set 1 attribute (Color). And select possible values for it. | ||
> 5. Create a BOM. | ||
> 6. Select a manufacturing product Desk. | ||
> 7. Add a BOM line. Select Component (product template) Plastic. | ||
> 8. You will see Color attribute appeared in the Apply On Attribute | ||
> field. | ||
> 9. Save the BOM. | ||
> 10. Create Manufacturing Order. Select Desk with e.g. Red color to | ||
> produce and BOM you created. | ||
> 11. You will see in the component list Plastic added with | ||
> corresponding (red) color. | ||
Consider, that to use this feature component must have only 1 attribute. | ||
And a values of this attribute of a manufacturing product should be | ||
available for a component. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.