-
-
Notifications
You must be signed in to change notification settings - Fork 507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16.0][BUG] mrp_multi_level: using wrong variant BOM #1366
Labels
Comments
The OCA module https://github.com/OCA/product-configurator/tree/14.0/product_configurator_mrp So, while the current method of selecting a BOM works with the core odoo demo data, it does not work with the OCA product configurator. |
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Oct 21, 2024
fixes OCA#1366 Start by getting two BOMs: - Lowest sequence variant BOM - Lowest sequence template-only BOM (no product_id) Of these two, use the one with the lowest sequence
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Oct 21, 2024
fixes OCA#1366 Start by getting two BOMs: - Lowest sequence variant BOM - Lowest sequence template-only BOM (no product_id) Of these two, use the one with the lowest sequence
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Nov 1, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template-only BOM (no product_id).
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Nov 1, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template-only BOM (no product_id).
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Nov 2, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Nov 4, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
matt454357
added a commit
to asphaltzipper/manufacture
that referenced
this issue
Nov 5, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
LoisRForgeFlow
pushed a commit
to ForgeFlow/manufacture
that referenced
this issue
Nov 8, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
LoisRForgeFlow
pushed a commit
to ForgeFlow/manufacture
that referenced
this issue
Nov 8, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
Solved via #1369 |
JasminSForgeFlow
pushed a commit
to ForgeFlow/manufacture
that referenced
this issue
Dec 3, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
JasminSForgeFlow
pushed a commit
to ForgeFlow/manufacture
that referenced
this issue
Dec 4, 2024
fixes OCA#1366 Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant BOM or a template BOM (no product_id).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version 16.0 module mrp_multi_level is using the wrong variant BOM, when multiple variant BOMs exist.
This code should look for a variant specific BOM:
manufacture/mrp_multi_level/wizards/mrp_multi_level.py
Lines 183 to 185 in 1f34d36
To Reproduce
Add attribute "Legs" and values "Steel" and "Aluminum" on product FP-2:
Create BOMs for the two variants as follows:
Create outbound move for product FP-2 (Aluminum):
We expect a planned order for SF-2, but we get a planned order for SF-1:
The text was updated successfully, but these errors were encountered: