From 439e40fea136a03e88f298a60177553f32f6c296 Mon Sep 17 00:00:00 2001 From: Freni-OSI Date: Tue, 9 Feb 2021 14:47:05 +0530 Subject: [PATCH 01/45] [14.0][ADD]Added Module purchase_order_line_menu --- purchase_order_line_menu/README.rst | 81 ++++ purchase_order_line_menu/__init__.py | 2 + purchase_order_line_menu/__manifest__.py | 19 + .../readme/CONTRIBUTORS.rst | 4 + .../readme/DESCRIPTION.rst | 1 + purchase_order_line_menu/readme/USAGE.rst | 1 + .../static/description/index.html | 428 ++++++++++++++++++ .../views/purchase_order_line_views.xml | 29 ++ 8 files changed, 565 insertions(+) create mode 100644 purchase_order_line_menu/README.rst create mode 100644 purchase_order_line_menu/__init__.py create mode 100644 purchase_order_line_menu/__manifest__.py create mode 100644 purchase_order_line_menu/readme/CONTRIBUTORS.rst create mode 100644 purchase_order_line_menu/readme/DESCRIPTION.rst create mode 100644 purchase_order_line_menu/readme/USAGE.rst create mode 100644 purchase_order_line_menu/static/description/index.html create mode 100644 purchase_order_line_menu/views/purchase_order_line_views.xml diff --git a/purchase_order_line_menu/README.rst b/purchase_order_line_menu/README.rst new file mode 100644 index 00000000000..21130be7ac3 --- /dev/null +++ b/purchase_order_line_menu/README.rst @@ -0,0 +1,81 @@ +======================== +Purchase Order Line Menu +======================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/purchase-workflow/tree/14.0/purchase_order_line_menu + :alt: OCA/purchase-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/purchase-workflow-14-0/purchase-workflow-14-0-purchase_order_line_menu + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/142/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Adds a menu item to list all Purchase Order lines. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Menu option available at Purchase > Orders > Purchase 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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Open Source Integrators + +Contributors +~~~~~~~~~~~~ + +* `Open Source Integrators `: + + * Daniel Reis + * Freni Patel + +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. + +This module is part of the `OCA/purchase-workflow `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/purchase_order_line_menu/__init__.py b/purchase_order_line_menu/__init__.py new file mode 100644 index 00000000000..81e367a18b8 --- /dev/null +++ b/purchase_order_line_menu/__init__.py @@ -0,0 +1,2 @@ +# Copyright (C) 2021 Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/purchase_order_line_menu/__manifest__.py b/purchase_order_line_menu/__manifest__.py new file mode 100644 index 00000000000..8b55db08e97 --- /dev/null +++ b/purchase_order_line_menu/__manifest__.py @@ -0,0 +1,19 @@ +# Copyright (C) 2021 Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Purchase Order Line Menu", + "version": "14.0.1.0.0", + "author": "Open Source Integrators, Odoo Community Association (OCA)", + "summary": "Adds Purchase Order Lines Menu", + "website": "https://github.com/OCA/purchase-workflow", + "license": "AGPL-3", + "depends": ["purchase"], + "category": "Inventory/Purchase", + "data": [ + "views/purchase_order_line_views.xml", + ], + "installable": True, + "maintainer": "dreispt", + "development_status": "Beta", +} diff --git a/purchase_order_line_menu/readme/CONTRIBUTORS.rst b/purchase_order_line_menu/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..bd94ad32b6b --- /dev/null +++ b/purchase_order_line_menu/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* `Open Source Integrators `: + + * Daniel Reis + * Freni Patel diff --git a/purchase_order_line_menu/readme/DESCRIPTION.rst b/purchase_order_line_menu/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..9eb6aa6e82c --- /dev/null +++ b/purchase_order_line_menu/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +Adds a menu item to list all Purchase Order lines. diff --git a/purchase_order_line_menu/readme/USAGE.rst b/purchase_order_line_menu/readme/USAGE.rst new file mode 100644 index 00000000000..dbb12b1d70a --- /dev/null +++ b/purchase_order_line_menu/readme/USAGE.rst @@ -0,0 +1 @@ +Menu option available at Purchase > Orders > Purchase Order Lines. diff --git a/purchase_order_line_menu/static/description/index.html b/purchase_order_line_menu/static/description/index.html new file mode 100644 index 00000000000..b44cb0d0eb9 --- /dev/null +++ b/purchase_order_line_menu/static/description/index.html @@ -0,0 +1,428 @@ + + + + + + +Purchase Order Line Menu + + + +
+

Purchase Order Line Menu

+ + +

Beta License: AGPL-3 OCA/purchase-workflow Translate me on Weblate Try me on Runbot

+

Adds a menu item to list all Purchase Order lines.

+

Table of contents

+ +
+

Usage

+

Menu option available at Purchase > Orders > Purchase 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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Open Source Integrators
  • +
+
+
+

Contributors

+ +
+
+

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.

+

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

+

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

+
+
+
+ + diff --git a/purchase_order_line_menu/views/purchase_order_line_views.xml b/purchase_order_line_menu/views/purchase_order_line_views.xml new file mode 100644 index 00000000000..2d60aac387a --- /dev/null +++ b/purchase_order_line_menu/views/purchase_order_line_views.xml @@ -0,0 +1,29 @@ + + + purchase.order.line.pivot + purchase.order.line + + + + + + + + + + Order Lines + ir.actions.act_window + purchase.order.line + tree,pivot + + + + + + From 5c4dfd3562846e708a9751c9ceb1d17f4558916f Mon Sep 17 00:00:00 2001 From: Freni-OSI Date: Wed, 10 Feb 2021 12:08:33 +0530 Subject: [PATCH 02/45] [14.0][IMP]Improved purchase_order_line_menu --- purchase_order_line_menu/views/purchase_order_line_views.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/purchase_order_line_menu/views/purchase_order_line_views.xml b/purchase_order_line_menu/views/purchase_order_line_views.xml index 2d60aac387a..b7b411699c9 100644 --- a/purchase_order_line_menu/views/purchase_order_line_views.xml +++ b/purchase_order_line_menu/views/purchase_order_line_views.xml @@ -11,7 +11,7 @@ - Order Lines + Purchase Order Lines ir.actions.act_window purchase.order.line tree,pivot @@ -19,7 +19,7 @@ Date: Thu, 18 Feb 2021 21:09:23 +0000 Subject: [PATCH 03/45] [UPD] Update purchase_order_line_menu.pot --- .../i18n/purchase_order_line_menu.pot | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 purchase_order_line_menu/i18n/purchase_order_line_menu.pot diff --git a/purchase_order_line_menu/i18n/purchase_order_line_menu.pot b/purchase_order_line_menu/i18n/purchase_order_line_menu.pot new file mode 100644 index 00000000000..651bc7c8c75 --- /dev/null +++ b/purchase_order_line_menu/i18n/purchase_order_line_menu.pot @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_order_line_menu +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \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: purchase_order_line_menu +#: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.view_purchase_order_line_pivot +msgid "Order Lines" +msgstr "" + +#. module: purchase_order_line_menu +#: model:ir.actions.act_window,name:purchase_order_line_menu.action_purchase_orders_lines +#: model:ir.ui.menu,name:purchase_order_line_menu.purchase_order_line_menu +msgid "Purchase Order Lines" +msgstr "" From 58e8ded1f2215518d05639941de5feef415e420c Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 18 Feb 2021 21:35:11 +0000 Subject: [PATCH 04/45] [UPD] README.rst --- purchase_order_line_menu/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/purchase_order_line_menu/static/description/index.html b/purchase_order_line_menu/static/description/index.html index b44cb0d0eb9..f6d2eb329c7 100644 --- a/purchase_order_line_menu/static/description/index.html +++ b/purchase_order_line_menu/static/description/index.html @@ -3,7 +3,7 @@ - + Purchase Order Line Menu -
-

Purchase Order Line Menu

+
+ + +Odoo Community Association + +
+

Purchase Order Line Menu

-

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

+

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

Adds a menu item and some views to navigate through Purchase Order lines.

Table of contents

@@ -386,11 +391,11 @@

Purchase Order Line Menu

-

Usage

+

Usage

Menu option available at Purchase > Orders > Purchase Order Lines.

-

Bug Tracker

+

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 @@ -398,15 +403,15 @@

Bug Tracker

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

-

Credits

+

Credits

-

Authors

+

Authors

  • Open Source Integrators
-

Contributors

+

Contributors

-

Maintainers

+

Maintainers

This module is maintained by the OCA.

Odoo Community Association @@ -436,5 +441,6 @@

Maintainers

+
From 565145793656165a182029a72822bff0def0851e Mon Sep 17 00:00:00 2001 From: Joan Sisquella Date: Wed, 10 Sep 2025 13:35:54 +0200 Subject: [PATCH 41/45] [IMP] purchase_order_line_menu: add widget many2one in order_id, product_id and partner_id --- .../views/purchase_order_line_views.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/purchase_order_line_menu/views/purchase_order_line_views.xml b/purchase_order_line_menu/views/purchase_order_line_views.xml index 0125e9e6a0f..6761767cc1c 100644 --- a/purchase_order_line_menu/views/purchase_order_line_views.xml +++ b/purchase_order_line_menu/views/purchase_order_line_views.xml @@ -11,6 +11,15 @@ order_id asc, id asc + + many2one + + + many2one + + + many2one + @@ -49,7 +58,7 @@ hide - + Date: Fri, 12 Sep 2025 16:54:20 +0000 Subject: [PATCH 42/45] [BOT] post-merge updates --- purchase_order_line_menu/README.rst | 2 +- purchase_order_line_menu/__manifest__.py | 2 +- purchase_order_line_menu/static/description/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/purchase_order_line_menu/README.rst b/purchase_order_line_menu/README.rst index b844e52f7fa..d5a04cf24e9 100644 --- a/purchase_order_line_menu/README.rst +++ b/purchase_order_line_menu/README.rst @@ -11,7 +11,7 @@ Purchase Order Line Menu !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:5fb0fc2c80a71c5d28be9dd8abebc75e8b4745ae35fe6aaa4571315f41058ecf + !! source digest: sha256:517b29a98170c8d496d90888738322a5959eef8cedbc73e9ec8a0f7dd457a735 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png diff --git a/purchase_order_line_menu/__manifest__.py b/purchase_order_line_menu/__manifest__.py index 9ebf03b730f..54b015bb809 100644 --- a/purchase_order_line_menu/__manifest__.py +++ b/purchase_order_line_menu/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Purchase Order Line Menu", - "version": "18.0.1.0.1", + "version": "18.0.1.0.2", "author": "Open Source Integrators, Odoo Community Association (OCA)", "summary": "Adds Purchase Order Lines Menu", "website": "https://github.com/OCA/purchase-workflow", diff --git a/purchase_order_line_menu/static/description/index.html b/purchase_order_line_menu/static/description/index.html index f16befb66dc..fe6fec5737d 100644 --- a/purchase_order_line_menu/static/description/index.html +++ b/purchase_order_line_menu/static/description/index.html @@ -372,7 +372,7 @@

Purchase Order Line Menu

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:5fb0fc2c80a71c5d28be9dd8abebc75e8b4745ae35fe6aaa4571315f41058ecf +!! source digest: sha256:517b29a98170c8d496d90888738322a5959eef8cedbc73e9ec8a0f7dd457a735 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

Adds a menu item and some views to navigate through Purchase Order From 5405c6631c9715986a04d8be768dcc98a7f7ecdf Mon Sep 17 00:00:00 2001 From: mymage Date: Mon, 15 Sep 2025 12:52:03 +0000 Subject: [PATCH 43/45] Translated using Weblate (Italian) Currently translated at 100.0% (20 of 20 strings) Translation: purchase-workflow-18.0/purchase-workflow-18.0-purchase_order_line_menu Translate-URL: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-purchase_order_line_menu/it/ --- purchase_order_line_menu/i18n/it.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/purchase_order_line_menu/i18n/it.po b/purchase_order_line_menu/i18n/it.po index 1aa1997b816..e497eddb4b5 100644 --- a/purchase_order_line_menu/i18n/it.po +++ b/purchase_order_line_menu/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-02-16 17:46+0000\n" +"PO-Revision-Date: 2025-09-15 15:42+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17\n" +"X-Generator: Weblate 5.10.4\n" #. module: purchase_order_line_menu #: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__invoice_status @@ -49,7 +49,7 @@ msgstr "Bloccato" #. module: purchase_order_line_menu #: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search msgid "Nothing to Bill" -msgstr "Niente da pagare" +msgstr "Niente da fatturare" #. module: purchase_order_line_menu #: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__date_order @@ -121,4 +121,4 @@ msgstr "Da approvare" #. module: purchase_order_line_menu #: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search msgid "Waiting Bills" -msgstr "Conti in attesa" +msgstr "Fatture in attesa" From b058b38e0e795315db8778ba9ed898b5a1a9036d Mon Sep 17 00:00:00 2001 From: mymage Date: Wed, 17 Sep 2025 13:14:58 +0000 Subject: [PATCH 44/45] Translated using Weblate (Italian) Currently translated at 100.0% (20 of 20 strings) Translation: purchase-workflow-18.0/purchase-workflow-18.0-purchase_order_line_menu Translate-URL: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-purchase_order_line_menu/it/ --- purchase_order_line_menu/i18n/it.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/purchase_order_line_menu/i18n/it.po b/purchase_order_line_menu/i18n/it.po index e497eddb4b5..1877eab2924 100644 --- a/purchase_order_line_menu/i18n/it.po +++ b/purchase_order_line_menu/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-09-15 15:42+0000\n" +"PO-Revision-Date: 2025-09-17 13:37+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -20,7 +20,7 @@ msgstr "" #: model:ir.model.fields,field_description:purchase_order_line_menu.field_purchase_order_line__invoice_status #: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search msgid "Billing Status" -msgstr "Stato pagamento" +msgstr "Stato fatturazione" #. module: purchase_order_line_menu #: model_terms:ir.ui.view,arch_db:purchase_order_line_menu.purchase_order_line_search From 3f5d2f324db5763fb532e46f1a55ef5fa12982cc Mon Sep 17 00:00:00 2001 From: Hudson5577 Date: Tue, 14 Oct 2025 20:07:09 +0700 Subject: [PATCH 45/45] [19.0][MIG] purchase_order_line_menu: Migration to 19.0 --- purchase_order_line_menu/README.rst | 12 +++++++----- purchase_order_line_menu/__manifest__.py | 2 +- purchase_order_line_menu/readme/CONTRIBUTORS.md | 1 + .../static/description/index.html | 7 ++++--- .../views/purchase_order_line_views.xml | 4 ++-- 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/purchase_order_line_menu/README.rst b/purchase_order_line_menu/README.rst index d5a04cf24e9..0480c8298bc 100644 --- a/purchase_order_line_menu/README.rst +++ b/purchase_order_line_menu/README.rst @@ -21,13 +21,13 @@ Purchase Order Line Menu :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github - :target: https://github.com/OCA/purchase-workflow/tree/18.0/purchase_order_line_menu + :target: https://github.com/OCA/purchase-workflow/tree/19.0/purchase_order_line_menu :alt: OCA/purchase-workflow .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-purchase_order_line_menu + :target: https://translation.odoo-community.org/projects/purchase-workflow-19-0/purchase-workflow-19-0-purchase_order_line_menu :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/purchase-workflow&target_branch=18.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=19.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -51,7 +51,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. @@ -77,6 +77,8 @@ Contributors - Emilio Pascual - Rafael Blasco + - Hudson Amadeus Leonardy + Maintainers ----------- @@ -90,6 +92,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/purchase-workflow `_ project on GitHub. +This module is part of the `OCA/purchase-workflow `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/purchase_order_line_menu/__manifest__.py b/purchase_order_line_menu/__manifest__.py index 54b015bb809..348372b2c6b 100644 --- a/purchase_order_line_menu/__manifest__.py +++ b/purchase_order_line_menu/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Purchase Order Line Menu", - "version": "18.0.1.0.2", + "version": "19.0.1.0.2", "author": "Open Source Integrators, Odoo Community Association (OCA)", "summary": "Adds Purchase Order Lines Menu", "website": "https://github.com/OCA/purchase-workflow", diff --git a/purchase_order_line_menu/readme/CONTRIBUTORS.md b/purchase_order_line_menu/readme/CONTRIBUTORS.md index 967f1556440..e8c73355a6b 100644 --- a/purchase_order_line_menu/readme/CONTRIBUTORS.md +++ b/purchase_order_line_menu/readme/CONTRIBUTORS.md @@ -6,3 +6,4 @@ - Eduardo de Miguel \<\> - Emilio Pascual \<\> - Rafael Blasco \<\> + - Hudson Amadeus Leonardy \<\> diff --git a/purchase_order_line_menu/static/description/index.html b/purchase_order_line_menu/static/description/index.html index fe6fec5737d..dbe878dfb49 100644 --- a/purchase_order_line_menu/static/description/index.html +++ b/purchase_order_line_menu/static/description/index.html @@ -374,7 +374,7 @@

Purchase Order Line Menu

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:517b29a98170c8d496d90888738322a5959eef8cedbc73e9ec8a0f7dd457a735 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

+

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

Adds a menu item and some views to navigate through Purchase Order lines.

Table of contents

@@ -399,7 +399,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.

@@ -423,6 +423,7 @@

Contributors

  • Rafael Blasco <rblasco@moduon.team>
  • +
  • Hudson Amadeus Leonardy <https://solusiaglis.co.id>
  • @@ -436,7 +437,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/purchase-workflow project on GitHub.

    +

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

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

    diff --git a/purchase_order_line_menu/views/purchase_order_line_views.xml b/purchase_order_line_menu/views/purchase_order_line_views.xml index 6761767cc1c..7353c76f7b0 100644 --- a/purchase_order_line_menu/views/purchase_order_line_views.xml +++ b/purchase_order_line_menu/views/purchase_order_line_views.xml @@ -34,7 +34,7 @@
    - + - + show