From 6d8fb39fe19244b5c0e7dd8fee27957e991d43f8 Mon Sep 17 00:00:00 2001 From: Bruno Date: Wed, 15 May 2024 09:40:11 -0300 Subject: [PATCH] [ADD] remove receipt date in purchase report --- purchase_report_hide_date/README.rst | 75 +++ purchase_report_hide_date/__init__.py | 0 purchase_report_hide_date/__manifest__.py | 16 + purchase_report_hide_date/readme/CONFIGURE.md | 1 + .../readme/CONTRIBUTORS.md | 3 + .../readme/DESCRIPTION.md | 1 + purchase_report_hide_date/readme/USAGE.md | 4 + .../report/purchase_report.xml | 16 + .../static/description/index.html | 434 ++++++++++++++++++ .../odoo/addons/purchase_report_hide_date | 1 + setup/purchase_report_hide_date/setup.py | 6 + 11 files changed, 557 insertions(+) create mode 100644 purchase_report_hide_date/README.rst create mode 100644 purchase_report_hide_date/__init__.py create mode 100644 purchase_report_hide_date/__manifest__.py create mode 100644 purchase_report_hide_date/readme/CONFIGURE.md create mode 100644 purchase_report_hide_date/readme/CONTRIBUTORS.md create mode 100644 purchase_report_hide_date/readme/DESCRIPTION.md create mode 100644 purchase_report_hide_date/readme/USAGE.md create mode 100644 purchase_report_hide_date/report/purchase_report.xml create mode 100644 purchase_report_hide_date/static/description/index.html create mode 120000 setup/purchase_report_hide_date/odoo/addons/purchase_report_hide_date create mode 100644 setup/purchase_report_hide_date/setup.py diff --git a/purchase_report_hide_date/README.rst b/purchase_report_hide_date/README.rst new file mode 100644 index 0000000..f85b464 --- /dev/null +++ b/purchase_report_hide_date/README.rst @@ -0,0 +1,75 @@ +========================= +Purchase Report Hide Date +========================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:82d623674f44e655c8a6977d58121e1b92b9d292c8ec8f53784d9901ebd85859 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/github-KMEE%2Fkmee--odoo--addons-lightgray.png?logo=github + :target: https://github.com/KMEE/kmee-odoo-addons/tree/14.0/purchase_report_hide_date + :alt: KMEE/kmee-odoo-addons + +|badge1| |badge2| + +This module removes the receipt date from products in the purchase order +report. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +This module does not require any special configuration. + +Usage +===== + +To use this module, you need to: + +:: + + 1. Go to "Purchase" + 2. Print the purchase order report and verify if the product receipt date has been removed. + +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* KMEE + +Contributors +------------ + +- ``KMEE `` : + + - Bruno Corredato Botti bruno.botti@kmee.com.br + +Maintainers +----------- + +This module is part of the `KMEE/kmee-odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/purchase_report_hide_date/__init__.py b/purchase_report_hide_date/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/purchase_report_hide_date/__manifest__.py b/purchase_report_hide_date/__manifest__.py new file mode 100644 index 0000000..30b55f9 --- /dev/null +++ b/purchase_report_hide_date/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2024 KMEE] +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Purchase Report Hide Date", + "version": "14.0.1.0.0", + "license": "LGPL-3", + "author": "KMEE", + "website": "https://github.com/KMEE/kmee-odoo-addons", + "depends": [ + "purchase", + ], + "data": [ + "report/purchase_report.xml", + ], +} diff --git a/purchase_report_hide_date/readme/CONFIGURE.md b/purchase_report_hide_date/readme/CONFIGURE.md new file mode 100644 index 0000000..8c047d1 --- /dev/null +++ b/purchase_report_hide_date/readme/CONFIGURE.md @@ -0,0 +1 @@ +This module does not require any special configuration. diff --git a/purchase_report_hide_date/readme/CONTRIBUTORS.md b/purchase_report_hide_date/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..4c74b7b --- /dev/null +++ b/purchase_report_hide_date/readme/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +* `KMEE ` : + + * Bruno Corredato Botti diff --git a/purchase_report_hide_date/readme/DESCRIPTION.md b/purchase_report_hide_date/readme/DESCRIPTION.md new file mode 100644 index 0000000..946a05d --- /dev/null +++ b/purchase_report_hide_date/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module removes the receipt date from products in the purchase order report. diff --git a/purchase_report_hide_date/readme/USAGE.md b/purchase_report_hide_date/readme/USAGE.md new file mode 100644 index 0000000..5562c11 --- /dev/null +++ b/purchase_report_hide_date/readme/USAGE.md @@ -0,0 +1,4 @@ +To use this module, you need to: + + 1. Go to "Purchase" + 2. Print the purchase order report and verify if the product receipt date has been removed. diff --git a/purchase_report_hide_date/report/purchase_report.xml b/purchase_report_hide_date/report/purchase_report.xml new file mode 100644 index 0000000..55e834d --- /dev/null +++ b/purchase_report_hide_date/report/purchase_report.xml @@ -0,0 +1,16 @@ + + + + diff --git a/purchase_report_hide_date/static/description/index.html b/purchase_report_hide_date/static/description/index.html new file mode 100644 index 0000000..1ec67cb --- /dev/null +++ b/purchase_report_hide_date/static/description/index.html @@ -0,0 +1,434 @@ + + + + + +Purchase Report Hide Date + + + +
+

Purchase Report Hide Date

+ + +

Beta KMEE/kmee-odoo-addons

+

This module removes the receipt date from products in the purchase order +report.

+

Table of contents

+ +
+

Configuration

+

This module does not require any special configuration.

+
+
+

Usage

+

To use this module, you need to:

+
+1. Go to "Purchase"
+2. Print the purchase order report and verify if the product receipt date has been removed.
+
+
+
+

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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • KMEE
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the KMEE/kmee-odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/setup/purchase_report_hide_date/odoo/addons/purchase_report_hide_date b/setup/purchase_report_hide_date/odoo/addons/purchase_report_hide_date new file mode 120000 index 0000000..ac795c4 --- /dev/null +++ b/setup/purchase_report_hide_date/odoo/addons/purchase_report_hide_date @@ -0,0 +1 @@ +../../../../purchase_report_hide_date \ No newline at end of file diff --git a/setup/purchase_report_hide_date/setup.py b/setup/purchase_report_hide_date/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/purchase_report_hide_date/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)