diff --git a/sale_order_line_product_attribute_values/README.rst b/sale_order_line_product_attribute_values/README.rst new file mode 100644 index 00000000000..b24aafcd289 --- /dev/null +++ b/sale_order_line_product_attribute_values/README.rst @@ -0,0 +1,141 @@ +============================================ +Sale Order Line all Product Attribute Values +============================================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:fd1a8b3869250cb1081d3ece9f69491e9fed0668c696bf90d2cff21c5aa82756 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :alt: Alpha +.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/sale-workflow/tree/16.0/sale_order_line_product_attribute_values + :alt: OCA/sale-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_line_product_attribute_values + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the functionality of Sale Order Lines to support +view and filter by Product Attribute Values used. + +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +This module was developed because there is no way to know what Product +Attribute Values has been used on a product if there is only one +attribute configured in the product with "Never create variants" mode. + +It will be useful for you if you want to know which Product Attribute +Values has been used in which Sale Order Lines. + +If you need this module for those reasons, these might interest you too: + +- sale_order_line_menu + +Configuration +============= + +This module will not trigger the recomputation of the lines attributes +when installing only this module. This will avoid the installation +timeout. + +If you later want to recompute the lines, you can use a scheduled action +similar to this one: + +.. code:: python + + env["sale.order.line"].search([ + ("product_template_id.attribute_line_ids", "!=", []), + ])._compute_all_product_template_attribute_value_ids() + +Usage +===== + +To use this module, you need to: + +1. Create an Attribute called "Trademark" (for example) with Display + Type "Pills", Variants Creation Mode "Never" and add an Attribute + Value called "Adidas" +2. Create a product called "Shoe Adidas REF 123" and "Show Adidas REF + 456" +3. Add "Trademark: Adidas" on Attributes & Variants tab on both products + and configure (you can set an incremented price if you want) +4. Sell both products in a Sale Order +5. Created Sale Order Lines has Product Template Attribute Values and + Attribute Values its lines. +6. If you has installed ``sale_order_line_menu``, you can check those + values on Sale > Orders > Order Lines. + +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 +------- + +* Moduon + +Contributors +------------ + +- Eduardo de Miguel (`Moduon `__) + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +.. |maintainer-Shide| image:: https://github.com/Shide.png?size=40px + :target: https://github.com/Shide + :alt: Shide +.. |maintainer-rafaelbn| image:: https://github.com/rafaelbn.png?size=40px + :target: https://github.com/rafaelbn + :alt: rafaelbn + +Current `maintainers `__: + +|maintainer-Shide| |maintainer-rafaelbn| + +This module is part of the `OCA/sale-workflow `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/sale_order_line_product_attribute_values/__init__.py b/sale_order_line_product_attribute_values/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/sale_order_line_product_attribute_values/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/sale_order_line_product_attribute_values/__manifest__.py b/sale_order_line_product_attribute_values/__manifest__.py new file mode 100644 index 00000000000..1dd29beb984 --- /dev/null +++ b/sale_order_line_product_attribute_values/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2024 Moduon Team S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0) + +{ + "name": "Sale Order Line all Product Attribute Values", + "summary": "Store Product Attribute Values in Sale Order Lines", + "version": "16.0.1.0.0", + "development_status": "Alpha", + "category": "Sales/Sales", + "website": "https://github.com/OCA/sale-workflow", + "author": "Moduon, Odoo Community Association (OCA)", + "maintainers": ["Shide", "rafaelbn"], + "license": "LGPL-3", + "application": False, + "installable": True, + "depends": [ + "sale", + ], + "data": [ + "views/sale_order_line_view.xml", + ], +} diff --git a/sale_order_line_product_attribute_values/i18n/es.po b/sale_order_line_product_attribute_values/i18n/es.po new file mode 100644 index 00000000000..5011d2cc763 --- /dev/null +++ b/sale_order_line_product_attribute_values/i18n/es.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_order_line_product_attribute_values +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-26 09:09+0000\n" +"PO-Revision-Date: 2024-11-26 10:11+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.4\n" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,help:sale_order_line_product_attribute_values.field_sale_order_line__all_product_attribute_value_ids +msgid "" +"All Product Attribute Values used directly or indirecly for this line.\n" +"Contains information about increased price, html color, etc." +msgstr "" +"Todos los Valores de Atributos del Producto utilizados directa o " +"indirectamente para esta línea.\n" +"Contiene información sobre el incremento de precio, color html, etc." + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,help:sale_order_line_product_attribute_values.field_sale_order_line__all_product_template_attribute_value_ids +msgid "" +"All Product Template Attribute Values used directly or indirecly for this " +"line." +msgstr "" +"Todos los Valores de Atributo de la Plantilla de Producto utilizados " +"directa o indirectamente para esta línea." + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,field_description:sale_order_line_product_attribute_values.field_sale_order_line__all_product_attribute_value_ids +#: model_terms:ir.ui.view,arch_db:sale_order_line_product_attribute_values.view_sales_order_line_filter +msgid "Attribute Values" +msgstr "Valores de atributo" + +#. module: sale_order_line_product_attribute_values +#: model_terms:ir.ui.view,arch_db:sale_order_line_product_attribute_values.sale_order_line_view_form_readonly +msgid "Attributes" +msgstr "Atributos" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,field_description:sale_order_line_product_attribute_values.field_sale_order_line__all_product_template_attribute_value_ids +msgid "Product Template Attribute Values" +msgstr "Valores de Atributo de la Plantilla de producto" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model,name:sale_order_line_product_attribute_values.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línea de Orden de Venta" + +#. module: sale_order_line_product_attribute_values +#: model_terms:ir.ui.view,arch_db:sale_order_line_product_attribute_values.sale_order_line_view_form_readonly +msgid "Total" +msgstr "Total" diff --git a/sale_order_line_product_attribute_values/i18n/sale_order_line_product_attribute_values.pot b/sale_order_line_product_attribute_values/i18n/sale_order_line_product_attribute_values.pot new file mode 100644 index 00000000000..9226dd10267 --- /dev/null +++ b/sale_order_line_product_attribute_values/i18n/sale_order_line_product_attribute_values.pot @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_order_line_product_attribute_values +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-11-26 09:09+0000\n" +"PO-Revision-Date: 2024-11-26 09:09+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,help:sale_order_line_product_attribute_values.field_sale_order_line__all_product_attribute_value_ids +msgid "" +"All Product Attribute Values used directly or indirecly for this line.\n" +"Contains information about increased price, html color, etc." +msgstr "" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,help:sale_order_line_product_attribute_values.field_sale_order_line__all_product_template_attribute_value_ids +msgid "" +"All Product Template Attribute Values used directly or indirecly for this " +"line." +msgstr "" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,field_description:sale_order_line_product_attribute_values.field_sale_order_line__all_product_attribute_value_ids +#: model_terms:ir.ui.view,arch_db:sale_order_line_product_attribute_values.view_sales_order_line_filter +msgid "Attribute Values" +msgstr "" + +#. module: sale_order_line_product_attribute_values +#: model_terms:ir.ui.view,arch_db:sale_order_line_product_attribute_values.sale_order_line_view_form_readonly +msgid "Attributes" +msgstr "" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model.fields,field_description:sale_order_line_product_attribute_values.field_sale_order_line__all_product_template_attribute_value_ids +msgid "Product Template Attribute Values" +msgstr "" + +#. module: sale_order_line_product_attribute_values +#: model:ir.model,name:sale_order_line_product_attribute_values.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_order_line_product_attribute_values +#: model_terms:ir.ui.view,arch_db:sale_order_line_product_attribute_values.sale_order_line_view_form_readonly +msgid "Total" +msgstr "" diff --git a/sale_order_line_product_attribute_values/models/__init__.py b/sale_order_line_product_attribute_values/models/__init__.py new file mode 100644 index 00000000000..8eb9d1d4046 --- /dev/null +++ b/sale_order_line_product_attribute_values/models/__init__.py @@ -0,0 +1 @@ +from . import sale_order_line diff --git a/sale_order_line_product_attribute_values/models/sale_order_line.py b/sale_order_line_product_attribute_values/models/sale_order_line.py new file mode 100644 index 00000000000..50fd00a7435 --- /dev/null +++ b/sale_order_line_product_attribute_values/models/sale_order_line.py @@ -0,0 +1,70 @@ +# Copyright 2024 Moduon Team S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0) + +from odoo import api, fields, models + + +class SaleOrderLine(models.Model): + _inherit = "sale.order.line" + + all_product_template_attribute_value_ids = fields.Many2many( + string="Product Template Attribute Values", + comodel_name="product.template.attribute.value", + relation="sale_order_line_all_product_template_attribute_value_rel", + compute="_compute_all_product_template_attribute_value_ids", + help="All Product Template Attribute Values used directly or indirecly " + "for this line.", + store=True, + readonly=True, + ) + all_product_attribute_value_ids = fields.Many2many( + string="Attribute Values", + comodel_name="product.attribute.value", + relation="sale_order_line_all_product_attribute_value_rel", + compute="_compute_all_product_template_attribute_value_ids", + help="All Product Attribute Values used directly or indirecly " + "for this line.\n" + "Contains information about increased price, html color, etc.", + store=True, + readonly=True, + ) + + @api.depends( + "product_id", + "product_custom_attribute_value_ids", + "product_no_variant_attribute_value_ids", + ) + def _compute_all_product_template_attribute_value_ids(self): + """Compute all Product Template Attribute Values used directly or indirecly""" + if self.env.context.get("module") == "sale_order_line_product_attribute_values": + # Do not trigger computation when module is installed alone + # due to the large amount of records to compute + return + for record in self: + product = record.product_id + # Attribute values from the line + pt_attr_values = record.product_no_variant_attribute_value_ids + # Attribute values from the custom attributes + pt_attr_values |= record.product_custom_attribute_value_ids.mapped( + "custom_product_template_attribute_value_id" + ) + # Attribute values from the product + pt_attr_values |= product.product_template_variant_value_ids + # Attribute values that doesn't need to be chosen from the product + # because the variant is created with its values + pt_attr_values |= product.product_template_attribute_value_ids + # Attribute values from the product that doesn't need to be chosen + # because doesn't create variant and has only one option + for attr_l in product.valid_product_template_attribute_line_ids: + if ( + len(attr_l.value_ids) == 1 + and attr_l.attribute_id.create_variant == "no_variant" + ): + pt_attr_values |= attr_l.product_template_value_ids.filtered( + lambda ptav: ptav.ptav_active + and ptav.product_attribute_value_id in attr_l.value_ids + ) + record.all_product_template_attribute_value_ids = pt_attr_values + record.all_product_attribute_value_ids = pt_attr_values.mapped( + "product_attribute_value_id" + ) diff --git a/sale_order_line_product_attribute_values/readme/CONFIGURE.md b/sale_order_line_product_attribute_values/readme/CONFIGURE.md new file mode 100644 index 00000000000..8400109ae03 --- /dev/null +++ b/sale_order_line_product_attribute_values/readme/CONFIGURE.md @@ -0,0 +1,10 @@ +This module will not trigger the recomputation of the lines attributes when installing only this module. +This will avoid the installation timeout. + +If you later want to recompute the lines, you can use a scheduled action similar to this one: + +```python +env["sale.order.line"].search([ + ("product_template_id.attribute_line_ids", "!=", []), +])._compute_all_product_template_attribute_value_ids() +``` diff --git a/sale_order_line_product_attribute_values/readme/CONTEXT.md b/sale_order_line_product_attribute_values/readme/CONTEXT.md new file mode 100644 index 00000000000..1d131d2719d --- /dev/null +++ b/sale_order_line_product_attribute_values/readme/CONTEXT.md @@ -0,0 +1,7 @@ +This module was developed because there is no way to know what Product Attribute Values has been used on a product if there is only one attribute configured in the product with "Never create variants" mode. + +It will be useful for you if you want to know which Product Attribute Values has been used in which Sale Order Lines. + +If you need this module for those reasons, these might interest you too: + +- sale_order_line_menu diff --git a/sale_order_line_product_attribute_values/readme/CONTRIBUTORS.md b/sale_order_line_product_attribute_values/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..290347f4260 --- /dev/null +++ b/sale_order_line_product_attribute_values/readme/CONTRIBUTORS.md @@ -0,0 +1 @@ +- Eduardo de Miguel ([Moduon](https://www.moduon.team/)) diff --git a/sale_order_line_product_attribute_values/readme/DESCRIPTION.md b/sale_order_line_product_attribute_values/readme/DESCRIPTION.md new file mode 100644 index 00000000000..fd8c525dedf --- /dev/null +++ b/sale_order_line_product_attribute_values/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module extends the functionality of Sale Order Lines to support view and filter by Product Attribute Values used. diff --git a/sale_order_line_product_attribute_values/readme/USAGE.md b/sale_order_line_product_attribute_values/readme/USAGE.md new file mode 100644 index 00000000000..fffe84b8e32 --- /dev/null +++ b/sale_order_line_product_attribute_values/readme/USAGE.md @@ -0,0 +1,8 @@ +To use this module, you need to: + +1. Create an Attribute called "Trademark" (for example) with Display Type "Pills", Variants Creation Mode "Never" and add an Attribute Value called "Adidas" +2. Create a product called "Shoe Adidas REF 123" and "Show Adidas REF 456" +3. Add "Trademark: Adidas" on Attributes & Variants tab on both products and configure (you can set an incremented price if you want) +4. Sell both products in a Sale Order +5. Created Sale Order Lines has Product Template Attribute Values and Attribute Values its lines. +6. If you has installed `sale_order_line_menu`, you can check those values on Sale > Orders > Order Lines. diff --git a/sale_order_line_product_attribute_values/static/description/icon.png b/sale_order_line_product_attribute_values/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/sale_order_line_product_attribute_values/static/description/icon.png differ diff --git a/sale_order_line_product_attribute_values/static/description/index.html b/sale_order_line_product_attribute_values/static/description/index.html new file mode 100644 index 00000000000..fbfa2341344 --- /dev/null +++ b/sale_order_line_product_attribute_values/static/description/index.html @@ -0,0 +1,478 @@ + + + + + +Sale Order Line all Product Attribute Values + + + +
+

Sale Order Line all Product Attribute Values

+ + +

Alpha License: LGPL-3 OCA/sale-workflow Translate me on Weblate Try me on Runboat

+

This module extends the functionality of Sale Order Lines to support +view and filter by Product Attribute Values used.

+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+
+

Table of contents

+ +
+

Use Cases / Context

+

This module was developed because there is no way to know what Product +Attribute Values has been used on a product if there is only one +attribute configured in the product with “Never create variants” mode.

+

It will be useful for you if you want to know which Product Attribute +Values has been used in which Sale Order Lines.

+

If you need this module for those reasons, these might interest you too:

+
    +
  • sale_order_line_menu
  • +
+
+
+

Configuration

+

This module will not trigger the recomputation of the lines attributes +when installing only this module. This will avoid the installation +timeout.

+

If you later want to recompute the lines, you can use a scheduled action +similar to this one:

+
+env["sale.order.line"].search([
+  ("product_template_id.attribute_line_ids", "!=", []),
+])._compute_all_product_template_attribute_value_ids()
+
+
+
+

Usage

+

To use this module, you need to:

+
    +
  1. Create an Attribute called “Trademark” (for example) with Display +Type “Pills”, Variants Creation Mode “Never” and add an Attribute +Value called “Adidas”
  2. +
  3. Create a product called “Shoe Adidas REF 123” and “Show Adidas REF +456”
  4. +
  5. Add “Trademark: Adidas” on Attributes & Variants tab on both products +and configure (you can set an incremented price if you want)
  6. +
  7. Sell both products in a Sale Order
  8. +
  9. Created Sale Order Lines has Product Template Attribute Values and +Attribute Values its lines.
  10. +
  11. If you has installed sale_order_line_menu, you can check those +values on Sale > Orders > Order Lines.
  12. +
+
+
+

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

+
    +
  • Moduon
  • +
+
+
+

Contributors

+
    +
  • Eduardo de Miguel (Moduon)
  • +
+
+
+

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 maintainers:

+

Shide rafaelbn

+

This module is part of the OCA/sale-workflow project on GitHub.

+

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

+
+
+
+ + diff --git a/sale_order_line_product_attribute_values/tests/__init__.py b/sale_order_line_product_attribute_values/tests/__init__.py new file mode 100644 index 00000000000..2283b3b0b2f --- /dev/null +++ b/sale_order_line_product_attribute_values/tests/__init__.py @@ -0,0 +1 @@ +from . import test_sale_order_line diff --git a/sale_order_line_product_attribute_values/tests/test_sale_order_line.py b/sale_order_line_product_attribute_values/tests/test_sale_order_line.py new file mode 100644 index 00000000000..7465c398e05 --- /dev/null +++ b/sale_order_line_product_attribute_values/tests/test_sale_order_line.py @@ -0,0 +1,202 @@ +# Copyright 2024 Moduon Team S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0) + +from odoo.fields import Command +from odoo.tests.common import TransactionCase + + +class SomethingCase(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.partner = cls.env["res.partner"].create({"name": "Test Partner"}) + # No create variant attributes + cls.trademark_attribute = cls.env["product.attribute"].create( + { + "name": "Trademark", + "display_type": "pills", + "create_variant": "no_variant", + "value_ids": [ + Command.create({"name": "Adidas"}), + Command.create({"name": "Nike"}), + Command.create({"name": "Custom"}), + ], + } + ) + cls.features_attribute = cls.env["product.attribute"].create( + { + "name": "Features", + "display_type": "pills", + "create_variant": "no_variant", + "value_ids": [ + Command.create({"name": "Windproof"}), + Command.create({"name": "Waterproof"}), + ], + } + ) + cls.customization_attribute = cls.env["product.attribute"].create( + { + "name": "Customization", + "display_type": "pills", + "create_variant": "no_variant", + "value_ids": [ + Command.create({"name": "Front", "is_custom": True}), + Command.create({"name": "Rear", "is_custom": True}), + ], + } + ) + # Create variant attributes + cls.outer_material_attribute = cls.env["product.attribute"].create( + { + "name": "Outer Material", + "display_type": "pills", + "create_variant": "always", + "value_ids": [ + Command.create({"name": "Corduroy"}), + Command.create({"name": "Polyester"}), + Command.create({"name": "Cotton"}), + ], + } + ) + cls.inner_material_attribute = cls.env["product.attribute"].create( + { + "name": "Inner Material", + "display_type": "pills", + "create_variant": "always", + "value_ids": [ + Command.create({"name": "Sheepskin fabric"}), + Command.create({"name": "Breathable fabric"}), + ], + } + ) + cls.adidas, cls.nike, cls.custom = cls.trademark_attribute.value_ids + cls.windproof, cls.waterproof = cls.features_attribute.value_ids + cls.front, cls.rear = cls.customization_attribute.value_ids + cls.corduroy, cls.polyester, cls.cotton = cls.outer_material_attribute.value_ids + ( + cls.sheepskin_fabric, + cls.breathable_fabric, + ) = cls.inner_material_attribute.value_ids + + cls.custom_hoodie = cls.env["product.template"].create( + { + "name": "Custom Hoodie", + "type": "service", + "sale_ok": True, + } + ) + cls.env["product.template.attribute.line"].create( + [ + { + "product_tmpl_id": cls.custom_hoodie.id, + "attribute_id": cls.trademark_attribute.id, + "value_ids": [Command.set([cls.custom.id])], + }, + { + "product_tmpl_id": cls.custom_hoodie.id, + "attribute_id": cls.features_attribute.id, + "value_ids": [Command.set(cls.features_attribute.value_ids.ids)], + }, + { + "product_tmpl_id": cls.custom_hoodie.id, + "attribute_id": cls.customization_attribute.id, + "value_ids": [ + Command.set(cls.customization_attribute.value_ids.ids) + ], + }, + { + "product_tmpl_id": cls.custom_hoodie.id, + "attribute_id": cls.outer_material_attribute.id, + "value_ids": [ + Command.set(cls.outer_material_attribute.value_ids.ids) + ], + }, + { + "product_tmpl_id": cls.custom_hoodie.id, + "attribute_id": cls.inner_material_attribute.id, + "value_ids": [ + Command.set(cls.inner_material_attribute.value_ids.ids) + ], + }, + ] + ) + + def test_line_has_all_attributes(self): + """Test sale line has all selected attributes and inherited ones""" + t_custom = self.env["product.template.attribute.value"].search( + [ + ("product_tmpl_id", "=", self.custom_hoodie.id), + ("attribute_id", "=", self.trademark_attribute.id), + ("product_attribute_value_id", "=", self.custom.id), + ] + ) + f_windproof = self.env["product.template.attribute.value"].search( + [ + ("product_tmpl_id", "=", self.custom_hoodie.id), + ("attribute_id", "=", self.features_attribute.id), + ("product_attribute_value_id", "=", self.windproof.id), + ] + ) + c_front = self.env["product.template.attribute.value"].search( + [ + ("product_tmpl_id", "=", self.custom_hoodie.id), + ("attribute_id", "=", self.customization_attribute.id), + ("product_attribute_value_id", "=", self.front.id), + ] + ) + + # Simulate real order creation + custom_hoodie_variant = self.custom_hoodie.product_variant_ids[0] + so = self.env["sale.order"].create( + { + "partner_id": self.partner.id, + "order_line": [ + Command.create( + { + "product_template_id": self.custom_hoodie.id, + "product_id": custom_hoodie_variant.id, + "product_uom_qty": 1.0, + } + ) + ], + } + ) + so.order_line.write( + { + "product_custom_attribute_value_ids": [ + Command.create( + { + "custom_product_template_attribute_value_id": c_front.id, + "custom_value": "Odoo 16", + } + ) + ], + "product_no_variant_attribute_value_ids": [ + Command.set( + [ + t_custom.id, + f_windproof.id, + c_front.id, + ] + ) + ], + } + ) + so.order_line._compute_custom_attribute_values() + so.order_line._compute_no_variant_attribute_values() + self.assertEqual(len(so.order_line.all_product_template_attribute_value_ids), 5) + self.assertRecordValues( + so.order_line, + [ + { + "all_product_attribute_value_ids": [ + self.custom.id, + self.windproof.id, + self.front.id, + ] + + custom_hoodie_variant.product_template_variant_value_ids.mapped( + "product_attribute_value_id" + ).ids, + } + ], + ) diff --git a/sale_order_line_product_attribute_values/views/sale_order_line_view.xml b/sale_order_line_product_attribute_values/views/sale_order_line_view.xml new file mode 100644 index 00000000000..761049dd24c --- /dev/null +++ b/sale_order_line_product_attribute_values/views/sale_order_line_view.xml @@ -0,0 +1,73 @@ + + + + + sale.order.line.form.readonly + sale.order.line + + + + + + + + + + + + + + + + + + + + + + + sale.order.line.tree + sale.order.line + + + + + + + + + + sale.order.line.select + sale.order.line + + + + + + + + + + + diff --git a/setup/sale_order_line_product_attribute_values/odoo/addons/sale_order_line_product_attribute_values b/setup/sale_order_line_product_attribute_values/odoo/addons/sale_order_line_product_attribute_values new file mode 120000 index 00000000000..31d08382743 --- /dev/null +++ b/setup/sale_order_line_product_attribute_values/odoo/addons/sale_order_line_product_attribute_values @@ -0,0 +1 @@ +../../../../sale_order_line_product_attribute_values \ No newline at end of file diff --git a/setup/sale_order_line_product_attribute_values/setup.py b/setup/sale_order_line_product_attribute_values/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/sale_order_line_product_attribute_values/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)