From 7eb3ec7da6c90b228d95325c0da79f585c5e7af6 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 23 May 2024 16:40:37 -0300 Subject: [PATCH] [ADD] remove receipt date in purchase report --- product_lot_fiscal_comment/__init__.py | 2 +- .../data/prod_lot_fiscal_comment.xml | 4 ++-- product_lot_fiscal_comment/models/__init__.py | 2 +- purchase_report_hide_date/README.rst | 11 +++++++---- .../static/description/index.html | 6 +++--- .../odoo/addons/product_lot_fiscal_comment | 1 + setup/product_lot_fiscal_comment/setup.py | 6 ++++++ 7 files changed, 21 insertions(+), 11 deletions(-) create mode 120000 setup/product_lot_fiscal_comment/odoo/addons/product_lot_fiscal_comment create mode 100644 setup/product_lot_fiscal_comment/setup.py diff --git a/product_lot_fiscal_comment/__init__.py b/product_lot_fiscal_comment/__init__.py index 9a7e03e..0650744 100644 --- a/product_lot_fiscal_comment/__init__.py +++ b/product_lot_fiscal_comment/__init__.py @@ -1 +1 @@ -from . import models \ No newline at end of file +from . import models diff --git a/product_lot_fiscal_comment/data/prod_lot_fiscal_comment.xml b/product_lot_fiscal_comment/data/prod_lot_fiscal_comment.xml index fdd640d..7ca3a09 100644 --- a/product_lot_fiscal_comment/data/prod_lot_fiscal_comment.xml +++ b/product_lot_fiscal_comment/data/prod_lot_fiscal_comment.xml @@ -1,4 +1,4 @@ - + Lote @@ -6,4 +6,4 @@ fiscal l10n_br_fiscal.document.line.mixin - \ No newline at end of file + diff --git a/product_lot_fiscal_comment/models/__init__.py b/product_lot_fiscal_comment/models/__init__.py index 8c43c7d..9f5fe50 100644 --- a/product_lot_fiscal_comment/models/__init__.py +++ b/product_lot_fiscal_comment/models/__init__.py @@ -1 +1 @@ -from . import document_fiscal_line_mixin \ No newline at end of file +from . import document_fiscal_line_mixin diff --git a/purchase_report_hide_date/README.rst b/purchase_report_hide_date/README.rst index f85b464..60a1556 100644 --- a/purchase_report_hide_date/README.rst +++ b/purchase_report_hide_date/README.rst @@ -13,11 +13,14 @@ Purchase Report Hide Date .. |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 +.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +.. |badge3| 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| +|badge1| |badge2| |badge3| This module removes the receipt date from products in the purchase order report. @@ -63,9 +66,9 @@ Authors Contributors ------------ -- ``KMEE `` : +- ``KMEE ``\ \_\_: - - Bruno Corredato Botti bruno.botti@kmee.com.br + - Bruno Corredato Botti Maintainers ----------- diff --git a/purchase_report_hide_date/static/description/index.html b/purchase_report_hide_date/static/description/index.html index 1ec67cb..2e369ed 100644 --- a/purchase_report_hide_date/static/description/index.html +++ b/purchase_report_hide_date/static/description/index.html @@ -369,7 +369,7 @@

Purchase Report Hide Date

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:82d623674f44e655c8a6977d58121e1b92b9d292c8ec8f53784d9901ebd85859 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta KMEE/kmee-odoo-addons

+

Beta License: LGPL-3 KMEE/kmee-odoo-addons

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

Table of contents

@@ -417,8 +417,8 @@

Authors

Contributors

    -
  • KMEE <https://www.Kmee.com.br> : diff --git a/setup/product_lot_fiscal_comment/odoo/addons/product_lot_fiscal_comment b/setup/product_lot_fiscal_comment/odoo/addons/product_lot_fiscal_comment new file mode 120000 index 0000000..77adc81 --- /dev/null +++ b/setup/product_lot_fiscal_comment/odoo/addons/product_lot_fiscal_comment @@ -0,0 +1 @@ +../../../../product_lot_fiscal_comment \ No newline at end of file diff --git a/setup/product_lot_fiscal_comment/setup.py b/setup/product_lot_fiscal_comment/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/product_lot_fiscal_comment/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)