diff --git a/repair_picking_after_done/README.rst b/repair_picking_after_done/README.rst index 9acc2805..7fba178a 100644 --- a/repair_picking_after_done/README.rst +++ b/repair_picking_after_done/README.rst @@ -17,13 +17,13 @@ Repair picking after done :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Frepair-lightgray.png?logo=github - :target: https://github.com/OCA/repair/tree/17.0/repair_picking_after_done + :target: https://github.com/OCA/repair/tree/18.0/repair_picking_after_done :alt: OCA/repair .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/repair-17-0/repair-17-0-repair_picking_after_done + :target: https://translation.odoo-community.org/projects/repair-18-0/repair-18-0-repair_picking_after_done :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/repair&target_branch=17.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/repair&target_branch=18.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -88,7 +88,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 to smash it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -111,6 +111,8 @@ Contributors - Patryk Pyczko +- ``Heliconia Solutions Pvt. Ltd. ``\ \_ + Maintainers ----------- @@ -124,6 +126,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/repair `_ project on GitHub. +This module is part of the `OCA/repair `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/repair_picking_after_done/__manifest__.py b/repair_picking_after_done/__manifest__.py index 2674594c..56d32178 100644 --- a/repair_picking_after_done/__manifest__.py +++ b/repair_picking_after_done/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Repair picking after done", - "version": "17.0.1.1.0", + "version": "18.0.1.0.0", "author": "ForgeFlow, Odoo Community Association (OCA)", "website": "https://github.com/OCA/repair", "summary": "Transfer repaired move to another location directly from repair order", diff --git a/repair_picking_after_done/readme/CONTRIBUTORS.md b/repair_picking_after_done/readme/CONTRIBUTORS.md index f15d30c5..298b77df 100644 --- a/repair_picking_after_done/readme/CONTRIBUTORS.md +++ b/repair_picking_after_done/readme/CONTRIBUTORS.md @@ -2,4 +2,5 @@ > - Dhaval Talpada \<\> - [APSL-Nagarro](https://www.apsl.tech): - - Patryk Pyczko \<\> \ No newline at end of file + - Patryk Pyczko \<\> +- `Heliconia Solutions Pvt. Ltd. `_ diff --git a/repair_picking_after_done/static/description/index.html b/repair_picking_after_done/static/description/index.html index be0573ad..e3cfd7d1 100644 --- a/repair_picking_after_done/static/description/index.html +++ b/repair_picking_after_done/static/description/index.html @@ -369,7 +369,7 @@

Repair picking after done

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:b4f02d79666355063173a84f30f0d933ccd32f5ac36b52a70932189188e546f3 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Alpha License: AGPL-3 OCA/repair Translate me on Weblate Try me on Runboat

+

Alpha License: AGPL-3 OCA/repair Translate me on Weblate Try me on Runboat

This module enhances Odoo’s repair process by introducing automatic stock transfers for repaired products.

    @@ -437,7 +437,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 to smash it by providing a detailed and welcomed -feedback.

    +feedback.

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

    @@ -463,6 +463,8 @@

    Contributors

  • Patryk Pyczko <ppyczko@apsl.net>
+
  • Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>_

    +
  • @@ -474,7 +476,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/repair project on GitHub.

    +

    This module is part of the OCA/repair project on GitHub.

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

    diff --git a/repair_picking_after_done/tests/test_repair_transfers.py b/repair_picking_after_done/tests/test_repair_transfers.py index 6ea3a6ce..4304e3b9 100644 --- a/repair_picking_after_done/tests/test_repair_transfers.py +++ b/repair_picking_after_done/tests/test_repair_transfers.py @@ -14,10 +14,10 @@ def setUpClass(cls): cls.product_with_lot = cls.env["product.product"].create( { "name": "Product with lot tracking", - "type": "product", "tracking": "lot", "list_price": 10.0, "categ_id": cls.env.ref("product.product_category_all").id, + "is_storable": True, } ) cls.lot_id = cls.env["stock.lot"].create( diff --git a/repair_picking_after_done/tests/test_stock_move_split.py b/repair_picking_after_done/tests/test_stock_move_split.py index e3b60ffb..4913963a 100644 --- a/repair_picking_after_done/tests/test_stock_move_split.py +++ b/repair_picking_after_done/tests/test_stock_move_split.py @@ -9,7 +9,6 @@ def setUpClass(cls): cls.product = cls.env["product.product"].create( { "name": "Test Product", - "type": "product", } )