[IMP] modular_types: add modular configuration from sale order#1179
Draft
abbhi-Odoo wants to merge 2 commits intoodoo:19.0from
Draft
[IMP] modular_types: add modular configuration from sale order#1179abbhi-Odoo wants to merge 2 commits intoodoo:19.0from
abbhi-Odoo wants to merge 2 commits intoodoo:19.0from
Conversation
- Add modular.type model and configuration menu in MRP - Store per-order-line modular configuration using One2many relation
…tities - Allow entering modular type values on sale order lines - Store selected modular values linked to the sale line - Propagate modular values to manufacturing orders - Dynamically compute raw material quantities based on modular factors - Manufacturing components now scale according to customer configuration
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Before:
Manufacturing component quantities were fixed based on the Bill of Materials (BoM).
For configurable/modular products, users had to:
manually edit quantities in the Manufacturing Order.
This caused extra work and increased the risk of incorrect production quantities.
After:
Added modular configuration on the Sale Order line.
Users can enter modular parameters (e.g., Sections, Length, Panels) through a wizard
When a Manufacturing Order is created from the sale order, raw material quantities are automatically recalculated based on the entered modular values
Component quantities are dynamically computed during stock move generation
Impact:
Reduces manual intervention in Manufacturing Orders and prevents quantity errors by automatically adjusting raw materials according to the sales configuration.
Task: [5930995]