Products - Compute Technical Fields (template from Variant)

Add technical helper to compute easily template fields from product variant fields

Technical Name:
product_compute_template_field_from_variant_helper
Version:
16.0
License:
Author:
GRAP, Odoo SA
https://odoo-community.org/web/image/product.template/716863/image_1920?unique=e345e07
  • Odoo Version

Read the rules established to regulate the OCA (Bylaws )

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

Development

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

Known issues / Roadmap

Do not port this module in version 17.0.

(the feature is native since V17.0)

Bug Tracker

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.

Credits

Authors

  • Odoo SA
  • GRAP

Contributors

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

Maintainers

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.

This is a preview of the recently viewed products by the user.
Once the user has seen at least one product this snippet will be visible.

Recently viewed Products