From f4c258df5445be8d2c8d3943dc1f5704c2465b31 Mon Sep 17 00:00:00 2001 From: Carmen Bianca Bakker Date: Wed, 4 May 2022 15:38:14 +0200 Subject: [PATCH 01/11] [ADD] rotordc_report_picking_huge_sale_order Signed-off-by: Carmen Bianca Bakker --- .../__init__.py | 0 .../__manifest__.py | 24 +++++++++++++++++++ .../readme/CONTRIBUTORS.rst | 3 +++ .../readme/DESCRIPTION.rst | 1 + .../report/report_stockpicking_operations.xml | 8 +++++++ .../rotordc_report_picking_huge_sale_order | 1 + .../setup.py | 6 +++++ 7 files changed, 43 insertions(+) create mode 100644 rotordc_report_picking_huge_sale_order/__init__.py create mode 100644 rotordc_report_picking_huge_sale_order/__manifest__.py create mode 100644 rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst create mode 100644 rotordc_report_picking_huge_sale_order/readme/DESCRIPTION.rst create mode 100644 rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml create mode 120000 setup/rotordc_report_picking_huge_sale_order/odoo/addons/rotordc_report_picking_huge_sale_order create mode 100644 setup/rotordc_report_picking_huge_sale_order/setup.py diff --git a/rotordc_report_picking_huge_sale_order/__init__.py b/rotordc_report_picking_huge_sale_order/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/rotordc_report_picking_huge_sale_order/__manifest__.py b/rotordc_report_picking_huge_sale_order/__manifest__.py new file mode 100644 index 00000000..5930f339 --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/__manifest__.py @@ -0,0 +1,24 @@ +# Copyright 2022 Coop IT Easy SCRLfs +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "RotorDC Stock Picking Operations Report Huge Sale Order Text", + "summary": """ + At the bottom of the Picking Operations report, display the sale order in huge + text.""", + "version": "12.0.1.0.0", + "category": "Warehouse", + "website": "https://coopiteasy.be", + "author": "Coop IT Easy SCRLfs", + "license": "AGPL-3", + "application": False, + "depends": [ + "stock", + ], + "excludes": [], + "data": [ + "report/report_stockpicking_operations.xml", + ], + "demo": [], + "qweb": [], +} diff --git a/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst b/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..9f39efbc --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Coop IT Easy SCRLfs `_: + + * Carmen Bianca Bakker diff --git a/rotordc_report_picking_huge_sale_order/readme/DESCRIPTION.rst b/rotordc_report_picking_huge_sale_order/readme/DESCRIPTION.rst new file mode 100644 index 00000000..786b96ba --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +At the bottom of the Picking Operations report, display the sale order in huge text. diff --git a/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml b/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml new file mode 100644 index 00000000..5b77c8f7 --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml @@ -0,0 +1,8 @@ + + + + diff --git a/setup/rotordc_report_picking_huge_sale_order/odoo/addons/rotordc_report_picking_huge_sale_order b/setup/rotordc_report_picking_huge_sale_order/odoo/addons/rotordc_report_picking_huge_sale_order new file mode 120000 index 00000000..f6ea3d77 --- /dev/null +++ b/setup/rotordc_report_picking_huge_sale_order/odoo/addons/rotordc_report_picking_huge_sale_order @@ -0,0 +1 @@ +../../../../rotordc_report_picking_huge_sale_order \ No newline at end of file diff --git a/setup/rotordc_report_picking_huge_sale_order/setup.py b/setup/rotordc_report_picking_huge_sale_order/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/rotordc_report_picking_huge_sale_order/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 102815650cccb8f30fa6a58aa13096816d6998d5 Mon Sep 17 00:00:00 2001 From: Carmen Bianca Bakker Date: Fri, 6 May 2022 15:12:50 +0200 Subject: [PATCH 02/11] Regenerate all README.rst Signed-off-by: Carmen Bianca Bakker --- .../README.rst | 59 +++ .../static/description/index.html | 417 ++++++++++++++++++ 2 files changed, 476 insertions(+) create mode 100644 rotordc_report_picking_huge_sale_order/README.rst create mode 100644 rotordc_report_picking_huge_sale_order/static/description/index.html diff --git a/rotordc_report_picking_huge_sale_order/README.rst b/rotordc_report_picking_huge_sale_order/README.rst new file mode 100644 index 00000000..8683cf54 --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/README.rst @@ -0,0 +1,59 @@ +============================================================ +RotorDC Stock Picking Operations Report Huge Sale Order Text +============================================================ + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-coopiteasy%2Fcie--custom-lightgray.png?logo=github + :target: https://github.com/coopiteasy/cie-custom/tree/12.0/rotordc_report_picking_huge_sale_order + :alt: coopiteasy/cie-custom + +|badge1| |badge2| |badge3| + +At the bottom of the Picking Operations report, display the sale order in huge text. + +**Table of contents** + +.. contents:: + :local: + +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 +~~~~~~~ + +* Coop IT Easy SCRLfs + +Contributors +~~~~~~~~~~~~ + +* `Coop IT Easy SCRLfs `_: + + * Carmen Bianca Bakker + +Maintainers +~~~~~~~~~~~ + +This module is part of the `coopiteasy/cie-custom `_ project on GitHub. + +You are welcome to contribute. diff --git a/rotordc_report_picking_huge_sale_order/static/description/index.html b/rotordc_report_picking_huge_sale_order/static/description/index.html new file mode 100644 index 00000000..3d343477 --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/static/description/index.html @@ -0,0 +1,417 @@ + + + + + + +RotorDC Stock Picking Operations Report Huge Sale Order Text + + + +
+

RotorDC Stock Picking Operations Report Huge Sale Order Text

+ + +

Beta License: AGPL-3 coopiteasy/cie-custom

+

At the bottom of the Picking Operations report, display the sale order in huge text.

+

Table of contents

+ +
+

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

+
    +
  • Coop IT Easy SCRLfs
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the coopiteasy/cie-custom project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + From c8fa0af5148fbe8520ef271e785db01334210da3 Mon Sep 17 00:00:00 2001 From: oca-ci Date: Fri, 6 May 2022 13:16:17 +0000 Subject: [PATCH 03/11] [UPD] Update rotordc_report_picking_huge_sale_order.pot --- .../rotordc_report_picking_huge_sale_order.pot | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rotordc_report_picking_huge_sale_order/i18n/rotordc_report_picking_huge_sale_order.pot diff --git a/rotordc_report_picking_huge_sale_order/i18n/rotordc_report_picking_huge_sale_order.pot b/rotordc_report_picking_huge_sale_order/i18n/rotordc_report_picking_huge_sale_order.pot new file mode 100644 index 00000000..d2e396f1 --- /dev/null +++ b/rotordc_report_picking_huge_sale_order/i18n/rotordc_report_picking_huge_sale_order.pot @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.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" + From 31b32299dea975a30fbc53fd29cdc7b8e5e11deb Mon Sep 17 00:00:00 2001 From: Carmen Bianca Bakker Date: Wed, 29 Jun 2022 11:25:54 +0200 Subject: [PATCH 04/11] =?UTF-8?q?[FIX]=20SCRLfs=20=E2=86=92=20SC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carmen Bianca Bakker --- rotordc_report_picking_huge_sale_order/README.rst | 4 ++-- rotordc_report_picking_huge_sale_order/__manifest__.py | 4 ++-- .../readme/CONTRIBUTORS.rst | 2 +- .../static/description/index.html | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rotordc_report_picking_huge_sale_order/README.rst b/rotordc_report_picking_huge_sale_order/README.rst index 8683cf54..da5f0ac7 100644 --- a/rotordc_report_picking_huge_sale_order/README.rst +++ b/rotordc_report_picking_huge_sale_order/README.rst @@ -42,12 +42,12 @@ Credits Authors ~~~~~~~ -* Coop IT Easy SCRLfs +* Coop IT Easy SC Contributors ~~~~~~~~~~~~ -* `Coop IT Easy SCRLfs `_: +* `Coop IT Easy SC `_: * Carmen Bianca Bakker diff --git a/rotordc_report_picking_huge_sale_order/__manifest__.py b/rotordc_report_picking_huge_sale_order/__manifest__.py index 5930f339..973c2fcb 100644 --- a/rotordc_report_picking_huge_sale_order/__manifest__.py +++ b/rotordc_report_picking_huge_sale_order/__manifest__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Coop IT Easy SCRLfs +# Copyright 2022 Coop IT Easy SC # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { @@ -9,7 +9,7 @@ "version": "12.0.1.0.0", "category": "Warehouse", "website": "https://coopiteasy.be", - "author": "Coop IT Easy SCRLfs", + "author": "Coop IT Easy SC", "license": "AGPL-3", "application": False, "depends": [ diff --git a/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst b/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst index 9f39efbc..d64451ed 100644 --- a/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst +++ b/rotordc_report_picking_huge_sale_order/readme/CONTRIBUTORS.rst @@ -1,3 +1,3 @@ -* `Coop IT Easy SCRLfs `_: +* `Coop IT Easy SC `_: * Carmen Bianca Bakker diff --git a/rotordc_report_picking_huge_sale_order/static/description/index.html b/rotordc_report_picking_huge_sale_order/static/description/index.html index 3d343477..6c3e5eb6 100644 --- a/rotordc_report_picking_huge_sale_order/static/description/index.html +++ b/rotordc_report_picking_huge_sale_order/static/description/index.html @@ -394,13 +394,13 @@

Credits

Authors

    -
  • Coop IT Easy SCRLfs
  • +
  • Coop IT Easy SC

Contributors

    -
  • Coop IT Easy SCRLfs:
      +
    • Coop IT Easy SC:
      • Carmen Bianca Bakker
    • From 0f7a6742c2b2fba73c857910120138d9e364626d Mon Sep 17 00:00:00 2001 From: Robin Keunen Date: Mon, 8 May 2023 14:46:28 +0200 Subject: [PATCH 05/11] [IMP] rotordc_sale_related_so: related so on picking operations report --- .../report/report_stockpicking_operations.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml b/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml index 5b77c8f7..5930d191 100644 --- a/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml +++ b/rotordc_report_picking_huge_sale_order/report/report_stockpicking_operations.xml @@ -2,7 +2,11 @@ From 58740504fa571ab7b490043a0e45d45fb101d4ac Mon Sep 17 00:00:00 2001 From: Github GRAP Bot Date: Thu, 27 Jun 2024 14:05:42 +0000 Subject: [PATCH 06/11] [BOT] post-merge updates --- rotordc_report_picking_huge_sale_order/README.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rotordc_report_picking_huge_sale_order/README.rst b/rotordc_report_picking_huge_sale_order/README.rst index da5f0ac7..ad94af41 100644 --- a/rotordc_report_picking_huge_sale_order/README.rst +++ b/rotordc_report_picking_huge_sale_order/README.rst @@ -2,10 +2,13 @@ RotorDC Stock Picking Operations Report Huge Sale Order Text ============================================================ -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:7a695945c9d89e764585f8c9edaffaa35c1be9daf5531579d6a9f74e0827eefb + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ RotorDC Stock Picking Operations Report Huge Sale Order Text :target: https://github.com/coopiteasy/cie-custom/tree/12.0/rotordc_report_picking_huge_sale_order :alt: coopiteasy/cie-custom -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| At the bottom of the Picking Operations report, display the sale order in huge text. @@ -31,7 +34,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 +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. From 2f52a04ed1b3d63224d851ae1a6361f7c66cd2a1 Mon Sep 17 00:00:00 2001 From: hugues de keyzer Date: Fri, 6 Dec 2024 10:39:18 +0100 Subject: [PATCH 07/11] [MIG] rotordc_report_picking_huge_sale_order: migration to 13.0 --- .../__manifest__.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/rotordc_report_picking_huge_sale_order/__manifest__.py b/rotordc_report_picking_huge_sale_order/__manifest__.py index 973c2fcb..2bc270cb 100644 --- a/rotordc_report_picking_huge_sale_order/__manifest__.py +++ b/rotordc_report_picking_huge_sale_order/__manifest__.py @@ -3,22 +3,19 @@ { "name": "RotorDC Stock Picking Operations Report Huge Sale Order Text", - "summary": """ - At the bottom of the Picking Operations report, display the sale order in huge - text.""", - "version": "12.0.1.0.0", + "summary": ( + "At the bottom of the Picking Operations report, display the sale " + "order in huge text" + ), + "version": "13.0.1.0.0", "category": "Warehouse", "website": "https://coopiteasy.be", "author": "Coop IT Easy SC", "license": "AGPL-3", - "application": False, "depends": [ "stock", ], - "excludes": [], "data": [ "report/report_stockpicking_operations.xml", ], - "demo": [], - "qweb": [], } From 2d1da612b6856fb7667720afd7b1220408d7ea9e Mon Sep 17 00:00:00 2001 From: hugues de keyzer Date: Fri, 6 Dec 2024 10:39:40 +0100 Subject: [PATCH 08/11] [MIG] rotordc_report_picking_huge_sale_order: migration to 14.0 --- rotordc_report_picking_huge_sale_order/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotordc_report_picking_huge_sale_order/__manifest__.py b/rotordc_report_picking_huge_sale_order/__manifest__.py index 2bc270cb..3b9d430f 100644 --- a/rotordc_report_picking_huge_sale_order/__manifest__.py +++ b/rotordc_report_picking_huge_sale_order/__manifest__.py @@ -7,7 +7,7 @@ "At the bottom of the Picking Operations report, display the sale " "order in huge text" ), - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "category": "Warehouse", "website": "https://coopiteasy.be", "author": "Coop IT Easy SC", From f654c4cb95da99e4317830b45a16806679b52c51 Mon Sep 17 00:00:00 2001 From: hugues de keyzer Date: Fri, 6 Dec 2024 10:39:57 +0100 Subject: [PATCH 09/11] [MIG] rotordc_report_picking_huge_sale_order: migration to 15.0 --- rotordc_report_picking_huge_sale_order/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotordc_report_picking_huge_sale_order/__manifest__.py b/rotordc_report_picking_huge_sale_order/__manifest__.py index 3b9d430f..339f657b 100644 --- a/rotordc_report_picking_huge_sale_order/__manifest__.py +++ b/rotordc_report_picking_huge_sale_order/__manifest__.py @@ -7,7 +7,7 @@ "At the bottom of the Picking Operations report, display the sale " "order in huge text" ), - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "category": "Warehouse", "website": "https://coopiteasy.be", "author": "Coop IT Easy SC", From 31075e15623b825439e55518c2b74b5f9cb6e421 Mon Sep 17 00:00:00 2001 From: hugues de keyzer Date: Fri, 6 Dec 2024 10:40:08 +0100 Subject: [PATCH 10/11] [MIG] rotordc_report_picking_huge_sale_order: migration to 16.0 --- rotordc_report_picking_huge_sale_order/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotordc_report_picking_huge_sale_order/__manifest__.py b/rotordc_report_picking_huge_sale_order/__manifest__.py index 339f657b..7b3796b5 100644 --- a/rotordc_report_picking_huge_sale_order/__manifest__.py +++ b/rotordc_report_picking_huge_sale_order/__manifest__.py @@ -7,7 +7,7 @@ "At the bottom of the Picking Operations report, display the sale " "order in huge text" ), - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "category": "Warehouse", "website": "https://coopiteasy.be", "author": "Coop IT Easy SC", From a6168889d9266ebeee80f0e3519af6d3509739d3 Mon Sep 17 00:00:00 2001 From: hugues de keyzer Date: Fri, 6 Dec 2024 10:40:47 +0100 Subject: [PATCH 11/11] [IMP] rotordc_report_picking_huge_sale_order: run pre-commit --- .../README.rst | 6 +-- .../static/description/index.html | 37 ++++++++++--------- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/rotordc_report_picking_huge_sale_order/README.rst b/rotordc_report_picking_huge_sale_order/README.rst index ad94af41..6450a751 100644 --- a/rotordc_report_picking_huge_sale_order/README.rst +++ b/rotordc_report_picking_huge_sale_order/README.rst @@ -17,7 +17,7 @@ RotorDC Stock Picking Operations Report Huge Sale Order Text :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-coopiteasy%2Fcie--custom-lightgray.png?logo=github - :target: https://github.com/coopiteasy/cie-custom/tree/12.0/rotordc_report_picking_huge_sale_order + :target: https://github.com/coopiteasy/cie-custom/tree/16.0/rotordc_report_picking_huge_sale_order :alt: coopiteasy/cie-custom |badge1| |badge2| |badge3| @@ -35,7 +35,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. @@ -57,6 +57,6 @@ Contributors Maintainers ~~~~~~~~~~~ -This module is part of the `coopiteasy/cie-custom `_ project on GitHub. +This module is part of the `coopiteasy/cie-custom `_ project on GitHub. You are welcome to contribute. diff --git a/rotordc_report_picking_huge_sale_order/static/description/index.html b/rotordc_report_picking_huge_sale_order/static/description/index.html index 6c3e5eb6..6bbceda3 100644 --- a/rotordc_report_picking_huge_sale_order/static/description/index.html +++ b/rotordc_report_picking_huge_sale_order/static/description/index.html @@ -1,20 +1,19 @@ - - + RotorDC Stock Picking Operations Report Huge Sale Order Text