Dynamic Computation of Components & Operation Qty Based on Sales Order Line Value
by CLuedoo https://www.cluedoo.com/shop/lic-clu-set-mrp-0003-dynamic-computation-of-components-operation-qty-based-on-sales-order-line-value-5043$ 799.79
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
Approvals (approvals)
• Discuss (mail) • Employees (hr) • Manufacturing (mrp) • Inventory (stock) • Purchase (purchase) • Invoicing (account) |
| Community Apps Dependencies | Show |
| Lines of code | 1375 |
| Technical Name |
fal_advance_quantity_on_bom_formula |
| License | OPL-1 |
| Website | https://www.cluedoo.com/shop/lic-clu-set-mrp-0003-dynamic-computation-of-components-operation-qty-based-on-sales-order-line-value-5043 |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
Approvals (approvals)
• Discuss (mail) • Employees (hr) • Manufacturing (mrp) • Inventory (stock) • Purchase (purchase) • Invoicing (account) |
| Community Apps Dependencies | Show |
| Lines of code | 1375 |
| Technical Name |
fal_advance_quantity_on_bom_formula |
| License | OPL-1 |
| Website | https://www.cluedoo.com/shop/lic-clu-set-mrp-0003-dynamic-computation-of-components-operation-qty-based-on-sales-order-line-value-5043 |
ODOO'S FUNCTION
In Odoo, the standard functionality does not allow users to set a computation using Python code within Bills of Materials (BoM). The system does not provide a built-in way to dynamically calculate component quantities based on product attributes or production orders. Users must manually define the quantity of components required, which can be inefficient and error-prone, especially for complex manufacturing processes. Additionally, the "To Consume" column in Manufacturing Orders (MO) does not automatically reflect computed values based on custom logic.
CLUEDOO'S FUNCTION
Cluedoo enhances Odoo by introducing Python-based computation for Bills of Materials:
- Python Code for BoM Computation: Users can define dynamic calculations using Python code to determine component quantities.
- Automatic Component Quantity Calculation: The system automatically calculates the required quantity of components based on the volume of the finished product and the quantity to produce.
- Real-time Update in Manufacturing Orders: When creating an MO, the computed values are displayed in the "To Consume" column, ensuring accuracy and efficiency.
|
1. On BoM, we can set a computation using python code. For example:
This means: Volume on product template/finished product + 10 + quantity to produce
We will set the volume of the product (Plastic Laminate): 10
-> The result will be: 10 + 10 + 1= 21
-> The result will be: (10 + 10 + 2) x 2 = 24
|
|
|
Note:
in v18, volume is calculated by length, width and height if module fal_product_size_detail is installed. If not, we can use the ODS Volume field.
|
|
|
2. When we create a manufacturing order, select the finished product (Plastic Laminate). The "To Consume" column will show the computation of the Python code. |
|
HOW TO USE THIS MODULE
1
On BoM, we can set a computation using python code. For example:
If you set the volume of product: result = mo_id.product_tmpl_id.volume+10+mo_id.product_qty
If you set the volume of component:
result = product_template.volume+10+mo_id.product_qty
This means:
Volume on product template/finished product + 10 + quantity to produce
We will set the volume of the product (Plastic Laminate): 10
Quantity to produce on MO: 1
The result will be:
10 + 10 + 1= 21
Note: in v18, volume is caculated due to these fields
2
When we create a manufacturing order, select the finished product (Plastic Laminate). The "To Consume" column will show the computation of the Python code.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module