From ee9a8d1bb81412a85171ce63053b70c3a8abb739 Mon Sep 17 00:00:00 2001 From: GabbasovDinar Date: Mon, 17 Apr 2023 22:26:59 +0500 Subject: [PATCH] [MIG] delivery_multi_destination: Migration to 16.0 --- delivery_multi_destination/README.rst | 10 +++++----- delivery_multi_destination/__manifest__.py | 2 +- .../i18n/delivery_multi_destination.pot | 2 +- .../static/description/index.html | 6 +++--- .../tests/test_delivery_multi_destination.py | 15 +++++++-------- .../views/delivery_carrier_view.xml | 7 ++----- 6 files changed, 19 insertions(+), 23 deletions(-) diff --git a/delivery_multi_destination/README.rst b/delivery_multi_destination/README.rst index ae723adfab..6b5bc1776c 100644 --- a/delivery_multi_destination/README.rst +++ b/delivery_multi_destination/README.rst @@ -14,16 +14,16 @@ Multiple destinations for the same delivery method :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github - :target: https://github.com/OCA/delivery-carrier/tree/15.0/delivery_multi_destination + :target: https://github.com/OCA/delivery-carrier/tree/16.0/delivery_multi_destination :alt: OCA/delivery-carrier .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/delivery-carrier-15-0/delivery-carrier-15-0-delivery_multi_destination :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/99/15.0 + :target: https://runbot.odoo-community.org/runbot/99/16.0 :alt: Try me on Runbot -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| This module allows to set different price rules depending on the destination. @@ -67,7 +67,7 @@ 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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -105,6 +105,6 @@ 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. -This module is part of the `OCA/delivery-carrier `_ project on GitHub. +This module is part of the `OCA/delivery-carrier `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/delivery_multi_destination/__manifest__.py b/delivery_multi_destination/__manifest__.py index 5b40d84dc9..d1e36c9309 100644 --- a/delivery_multi_destination/__manifest__.py +++ b/delivery_multi_destination/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Multiple destinations for the same delivery method", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "category": "Delivery", "website": "https://github.com/OCA/delivery-carrier", "author": "Tecnativa, Odoo Community Association (OCA)", diff --git a/delivery_multi_destination/i18n/delivery_multi_destination.pot b/delivery_multi_destination/i18n/delivery_multi_destination.pot index 584fa70dac..5cd6cab5a7 100644 --- a/delivery_multi_destination/i18n/delivery_multi_destination.pot +++ b/delivery_multi_destination/i18n/delivery_multi_destination.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 15.0\n" +"Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/delivery_multi_destination/static/description/index.html b/delivery_multi_destination/static/description/index.html index f5753c6ed6..d28de8c436 100644 --- a/delivery_multi_destination/static/description/index.html +++ b/delivery_multi_destination/static/description/index.html @@ -367,7 +367,7 @@

Multiple destinations for the same delivery method

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/delivery-carrier Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/delivery-carrier Translate me on Weblate Try me on Runbot

This module allows to set different price rules depending on the destination.

This module restores the concept of delivery grid, reusing the same model for nesting several “children” delivery methods, one per possible destination. @@ -419,7 +419,7 @@

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 smashing it by providing a detailed and welcomed -feedback.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -452,7 +452,7 @@

Maintainers

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.

-

This module is part of the OCA/delivery-carrier project on GitHub.

+

This module is part of the OCA/delivery-carrier project on GitHub.

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

diff --git a/delivery_multi_destination/tests/test_delivery_multi_destination.py b/delivery_multi_destination/tests/test_delivery_multi_destination.py index 2ffd948dc6..715eeac776 100644 --- a/delivery_multi_destination/tests/test_delivery_multi_destination.py +++ b/delivery_multi_destination/tests/test_delivery_multi_destination.py @@ -49,21 +49,21 @@ def setUpClass(cls): cls.product_child_2 = cls.env["product.product"].create( {"name": "Test child 2", "detailed_type": "service"} ) + zip_prefix_child1 = cls.env["delivery.zip.prefix"].create({"name": "22222"}) + zip_prefix_child2 = cls.env["delivery.zip.prefix"].create({"name": "33333"}) cls.carrier_multi = cls._create_carrier( cls, ( { "name": "Test child 1", "product_id": cls.product_child_1, - "zip_from": 20000, - "zip_to": 29999, + "zip_prefix_ids": zip_prefix_child1, "fixed_price": 50, }, { "name": "Test child 2", "product_id": cls.product_child_2, - "zip_from": 30000, - "zip_to": 39999, + "zip_prefix_ids": zip_prefix_child2, "fixed_price": 150, }, ), @@ -84,17 +84,16 @@ def _create_carrier(self, childs): carrier_form = Form(self.env["delivery.carrier"]) carrier_form.name = "Test carrier multi" carrier_form.product_id = self.product - carrier_form.destination_type = "multi" carrier_form.delivery_type = "fixed" carrier_form.fixed_price = 100 + carrier_form.destination_type = "multi" for child_item in childs: with carrier_form.child_ids.new() as child_form: child_form.name = child_item["name"] child_form.product_id = child_item["product_id"] child_form.country_ids.add(self.country_2) child_form.state_ids.add(self.state) - child_form.zip_from = child_item["zip_from"] - child_form.zip_to = child_item["zip_to"] + child_form.zip_prefix_ids.add(child_item["zip_prefix_ids"]) child_form.delivery_type = "fixed" child_form.fixed_price = child_item["fixed_price"] return carrier_form.save() @@ -163,6 +162,6 @@ def test_picking_validation(self): self.sale_order.action_confirm() picking = self.sale_order.picking_ids self.assertEqual(picking.carrier_id, self.carrier_multi) - picking.move_lines.quantity_done = 1 + picking.move_ids.quantity_done = 1 picking._action_done() self.assertAlmostEqual(picking.carrier_price, 50) diff --git a/delivery_multi_destination/views/delivery_carrier_view.xml b/delivery_multi_destination/views/delivery_carrier_view.xml index dcfcfd1210..647d3bf3e6 100644 --- a/delivery_multi_destination/views/delivery_carrier_view.xml +++ b/delivery_multi_destination/views/delivery_carrier_view.xml @@ -81,11 +81,8 @@ invisible="not context.get('show_children_fields', False)" /> -