Skip to content

Latest commit

 

History

History
 
 

mrp_bom_line_formula_quantity

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

MRP BoM Line formula for quantity

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runboat

Compute the quantity of a Production Line using a formula defined in the BoM Line.

Table of contents

In any BoM line, fill the Quantity Formula field.

The following values are available:

  • bom_line: the current BoM line,
  • production: the production order being created,
  • product: the Product of current BoM line,
  • product_uom_qty: the quantity of the production order line,
  • product_uom: the UoM of the Product of current BoM line,
  • operation: the operation where the components are consumed for current BoM line,

The computed quantity must be assigned to the quantity variable.

This module can be used to customize the quantity of a component based on a custom attribute value selected on the product. The following configuration works when the website_sale module is installed.

In order to do that, configure as follows:

  1. Create an attribute "Component quantity" with a custom value

    https://raw.githubusercontent.com/OCA/manufacture/16.0/mrp_bom_line_formula_quantity/static/description/images/product_attribute.png
  2. Create and publish a Product having the configured custom value, and the MTO route (archived by default)

    https://raw.githubusercontent.com/OCA/manufacture/16.0/mrp_bom_line_formula_quantity/static/description/images/product_tab_attributes.png
  3. Add a BoM to the product, where one Component has the following formula for the quantity:

    https://raw.githubusercontent.com/OCA/manufacture/16.0/mrp_bom_line_formula_quantity/static/description/images/bom.png
    sale_lines = production.move_dest_ids.sale_line_id
    produced_template = production.product_tmpl_id
    produced_template_sale_line = sale_lines.filtered(lambda l: l.product_template_id == produced_template)
    custom_attributes_values = produced_template_sale_line.product_custom_attribute_value_ids.with_context(lang=None)
    component_quantity_attribute_value = custom_attributes_values.filtered(
        lambda av: av.custom_product_template_attribute_value_id.attribute_id.name == "Component quantity"
    )
    component_quantity = component_quantity_attribute_value.custom_value
    quantity = int(component_quantity)
  4. In the e-commerce, select a quantity for the custom value and buy the product

    https://raw.githubusercontent.com/OCA/manufacture/16.0/mrp_bom_line_formula_quantity/static/description/images/website_sale_product.png
  5. Confirm the sale order

    https://raw.githubusercontent.com/OCA/manufacture/16.0/mrp_bom_line_formula_quantity/static/description/images/sale_order.png

a Production order with the selected value of Component will be created

https://raw.githubusercontent.com/OCA/manufacture/16.0/mrp_bom_line_formula_quantity/static/description/images/production_order.png

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

  • Aion Tech

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

SirAionTech

This module is part of the OCA/manufacture project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.