Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.rst

Odoo Community Association

Products - Compute Technical Fields (template from Variant)

Beta License: LGPL-3 OCA/product-attribute Translate me on Weblate Try me on Runboat

This module extends the functionality of product module, introducing a technical helper to define easily template fields that are computed from variant values.

Table of contents

Replace this code:

class ProductTemplate(models.Model):
    _inherit = "product.template"

    net_weight = fields.Float(
        compute="_compute_net_weight",
        inverse="_inverse_net_weight",
        store=True,
    )

    @api.depends("product_variant_ids", "product_variant_ids.net_weight")
    def _compute_net_weight(self):
        for template in self:
            if template.product_variant_count == 1:
                template.net_weight = template.product_variant_ids.net_weight
            else:
                template.net_weight = 0.0

    def _inverse_net_weight(self):
        for template in self:
            if len(template.product_variant_ids) == 1:
                template.product_variant_ids.net_weight = template.net_weight

  def _get_related_fields_variant_template(self):
      res = super()._get_related_fields_variant_template()
      res.append("net_weight")
      return res

By this code:

class ProductTemplate(models.Model):
    _inherit = "product.template"

    net_weight = fields.Float(
        compute=lambda x: x._compute_template_field_from_variant_field("net_weight"),
        inverse=lambda x: x._set_product_variant_field("net_weight"),
        store=True,
    )

  def _get_related_fields_variant_template(self):
      res = super()._get_related_fields_variant_template()
      res.append("net_weight")
      return res

Do not port this module in version 17.0.

(the feature is native since V17.0)

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.

  • Odoo SA
  • GRAP

The code of this module is a backport of the code of product module in Odoo Version 18.0 CE.

https://github.com/odoo/odoo/blob/fa0c3d83b7d3bb06d2a23525f4334671574da358/addons/product/models/product_template.py#L264-L303

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:

legalsylvain

This module is part of the OCA/product-attribute project on GitHub.

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