Skip to main content

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

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file odoo_addon_product_compute_template_field_from_variant_helper-16.0.1.0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for odoo_addon_product_compute_template_field_from_variant_helper-16.0.1.0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 238e7cb0e4a46953a8a0f5699d0dfa2934b722fdc9d53fe719bba958980262ad
MD5 8b8eada7cc278c732ff75b781f456a9b
BLAKE2b-256 d100a5291a8bac750f25120e905d656d587a7e63932a30d02a9d8416e0577a0c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page