diff --git a/README.md b/README.md index 325c61c0eb9..f0bf2bd0db0 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ addon | version | maintainers | summary [sale_order_product_recommendation](sale_order_product_recommendation/) | 17.0.1.0.0 | [![sergio-teruel](https://github.com/sergio-teruel.png?size=30px)](https://github.com/sergio-teruel) [![rafaelbn](https://github.com/rafaelbn.png?size=30px)](https://github.com/rafaelbn) [![yajo](https://github.com/yajo.png?size=30px)](https://github.com/yajo) | Recommend products to sell to customer based on history [sale_order_qty_change_no_recompute](sale_order_qty_change_no_recompute/) | 17.0.1.0.0 | [![victoralmau](https://github.com/victoralmau.png?size=30px)](https://github.com/victoralmau) | Prevent recompute if only quantity has changed in sale order line [sale_order_revision](sale_order_revision/) | 17.0.1.0.0 | | Keep track of revised quotations -[sale_order_secondary_unit](sale_order_secondary_unit/) | 17.0.1.0.0 | | Sale product in a secondary unit +[sale_order_secondary_unit](sale_order_secondary_unit/) | 17.0.1.0.1 | | Sale product in a secondary unit [sale_order_type](sale_order_type/) | 17.0.1.0.2 | | Sale Order Type [sale_order_type_confirm_message](sale_order_type_confirm_message/) | 17.0.1.0.0 | | Confirmation requirement when validating sale [sale_partner_address_restrict](sale_partner_address_restrict/) | 17.0.1.0.0 | | Restrict addresses domain in the sales order form taking into account the partner selected diff --git a/sale_order_secondary_unit/README.rst b/sale_order_secondary_unit/README.rst index ec6543e2f3a..d1a84adb58f 100644 --- a/sale_order_secondary_unit/README.rst +++ b/sale_order_secondary_unit/README.rst @@ -7,7 +7,7 @@ Sale Order Secondary Unit !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:3e89e2531d8e82819e39bb8ac0543465f9ea5778ca782c06108573829632400a + !! source digest: sha256:a29ba39b523a71f8810db0e1ebfa3bc2e72be171bc3da9dfedaab16f47225d40 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png diff --git a/sale_order_secondary_unit/__manifest__.py b/sale_order_secondary_unit/__manifest__.py index c960737da8b..1437950466a 100644 --- a/sale_order_secondary_unit/__manifest__.py +++ b/sale_order_secondary_unit/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Sale Order Secondary Unit", "summary": "Sale product in a secondary unit", - "version": "17.0.1.0.0", + "version": "17.0.1.0.1", "development_status": "Production/Stable", "category": "Sale", "website": "https://github.com/OCA/sale-workflow", diff --git a/sale_order_secondary_unit/static/description/index.html b/sale_order_secondary_unit/static/description/index.html index 9eebb828c57..d8b1bd85711 100644 --- a/sale_order_secondary_unit/static/description/index.html +++ b/sale_order_secondary_unit/static/description/index.html @@ -367,7 +367,7 @@

Sale Order Secondary Unit

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:3e89e2531d8e82819e39bb8ac0543465f9ea5778ca782c06108573829632400a +!! source digest: sha256:a29ba39b523a71f8810db0e1ebfa3bc2e72be171bc3da9dfedaab16f47225d40 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Production/Stable License: AGPL-3 OCA/sale-workflow Translate me on Weblate Try me on Runboat

This module extends the functionality of sale orders to allow sale diff --git a/sale_order_secondary_unit/tests/test_sale_order.py b/sale_order_secondary_unit/tests/test_sale_order.py index 4a6b812732f..13ba5d20973 100644 --- a/sale_order_secondary_unit/tests/test_sale_order.py +++ b/sale_order_secondary_unit/tests/test_sale_order.py @@ -26,6 +26,7 @@ def setUpClass(cls): "name": "test", "uom_id": cls.product_uom_kg.id, "uom_po_id": cls.product_uom_kg.id, + "list_price": 1000, } ) # Set secondary uom on product template @@ -54,7 +55,6 @@ def setUpClass(cls): with order_form.order_line.new() as line_form: line_form.product_id = cls.product line_form.product_uom_qty = 1 - line_form.price_unit = 1000.00 cls.order = order_form.save() def test_onchange_secondary_uom(self):