diff --git a/.pylintrc b/.pylintrc index afcffcd..2ca0868 100644 --- a/.pylintrc +++ b/.pylintrc @@ -9,7 +9,7 @@ readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/templat manifest_required_authors=KMEE manifest_required_keys=license manifest_deprecated_keys=description,active -license_allowed=LGPL-3 +license_allowed=LGPL-3,AGPL-3 valid_odoo_versions=14.0 [MESSAGES CONTROL] diff --git a/.pylintrc-mandatory b/.pylintrc-mandatory index a6805ac..f6a16e6 100644 --- a/.pylintrc-mandatory +++ b/.pylintrc-mandatory @@ -8,7 +8,7 @@ readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/templat manifest_required_authors=KMEE manifest_required_keys=license manifest_deprecated_keys=description,active -license_allowed=LGPL-3 +license_allowed=LGPL-3,AGPL-3 valid_odoo_versions=14.0 [MESSAGES CONTROL] diff --git a/l10n_br_fiscal_comment_product_lot/README.rst b/l10n_br_fiscal_comment_product_lot/README.rst new file mode 100644 index 0000000..3ee6168 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/README.rst @@ -0,0 +1,86 @@ +========================== +Product Lot Fiscal Comment +========================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:07ebecfc2dc52bcdfc21f98bf0f39738826c73f7c27c2fedab18b92c6635ab2b + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-KMEE%2Fkmee--odoo--addons-lightgray.png?logo=github + :target: https://github.com/KMEE/kmee-odoo-addons/tree/14.0/l10n_br_fiscal_comment_product_lot + :alt: KMEE/kmee-odoo-addons + +|badge1| |badge2| |badge3| + +This module allows the user to enter which lot of the product was used +in comment of the fiscal document. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To add the product lot used in the fiscal document: + +:: + + 1. Go to **Fiscal > Configuration > Operation**. + 2. Enter the main operation of your workflow, edit and reset to draft. + 3. Click on the operation line where you want to insert the product lot comment. + 4. Go to **Extra Info**, click on the field **Comment** and select "Lote". + 5. Save, click on "Review" and "Approval" and save again. + +Usage +===== + +To use this module, you need to: + +:: + + 1. Follow the steps provided in the file "CONFIGURE.md". + 2. Download the fiscal document xml and search for "LOTE:", if it appears, the module is working. + +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 + +Maintainers +----------- + +This module is part of the `KMEE/kmee-odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/l10n_br_fiscal_comment_product_lot/__init__.py b/l10n_br_fiscal_comment_product_lot/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/l10n_br_fiscal_comment_product_lot/__manifest__.py b/l10n_br_fiscal_comment_product_lot/__manifest__.py new file mode 100644 index 0000000..8fa98a7 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2024 KMEE +# License LGPL-3 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Product Lot Fiscal Comment", + "version": "14.0.1.0.0", + "license": "AGPL-3", + "author": "KMEE", + "website": "https://github.com/KMEE/kmee-odoo-addons", + "depends": [ + "l10n_br_fiscal", + "account_invoice_production_lot", + ], + "data": [ + "data/prod_lot_fiscal_comment.xml", + ], +} diff --git a/l10n_br_fiscal_comment_product_lot/data/prod_lot_fiscal_comment.xml b/l10n_br_fiscal_comment_product_lot/data/prod_lot_fiscal_comment.xml new file mode 100644 index 0000000..7ca3a09 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/data/prod_lot_fiscal_comment.xml @@ -0,0 +1,9 @@ + + + + Lote + LOTE: ${ lot } + fiscal + l10n_br_fiscal.document.line.mixin + + diff --git a/l10n_br_fiscal_comment_product_lot/models/__init__.py b/l10n_br_fiscal_comment_product_lot/models/__init__.py new file mode 100644 index 0000000..9f5fe50 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/models/__init__.py @@ -0,0 +1 @@ +from . import document_fiscal_line_mixin diff --git a/l10n_br_fiscal_comment_product_lot/models/document_fiscal_line_mixin.py b/l10n_br_fiscal_comment_product_lot/models/document_fiscal_line_mixin.py new file mode 100644 index 0000000..0b2fb76 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/models/document_fiscal_line_mixin.py @@ -0,0 +1,12 @@ +from odoo import models + + +class FiscalDocumentLineMixinMethods(models.AbstractModel): + _inherit = "l10n_br_fiscal.document.line.mixin.methods" + + def __document_comment_vals(self): + res = super(FiscalDocumentLineMixinMethods, self).__document_comment_vals() + res["lot"] = ", ".join( + self.account_line_ids.mapped("prod_lot_ids").mapped("name") + ) + return res diff --git a/l10n_br_fiscal_comment_product_lot/readme/CONFIGURE.md b/l10n_br_fiscal_comment_product_lot/readme/CONFIGURE.md new file mode 100644 index 0000000..48747de --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/readme/CONFIGURE.md @@ -0,0 +1,7 @@ +To add the product lot used in the fiscal document: + + 1. Go to **Fiscal > Configuration > Operation**. + 2. Enter the main operation of your workflow, edit and reset to draft. + 3. Click on the operation line where you want to insert the product lot comment. + 4. Go to **Extra Info**, click on the field **Comment** and select "Lote". + 5. Save, click on "Review" and "Approval" and save again. diff --git a/l10n_br_fiscal_comment_product_lot/readme/CONTRIBUTORS.md b/l10n_br_fiscal_comment_product_lot/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..98374df --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/readme/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +* `KMEE `__: + + * Bruno Corredato Botti diff --git a/l10n_br_fiscal_comment_product_lot/readme/DESCRIPTION.md b/l10n_br_fiscal_comment_product_lot/readme/DESCRIPTION.md new file mode 100644 index 0000000..b309005 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module allows the user to enter which lot of the product was used in comment of the fiscal document. diff --git a/l10n_br_fiscal_comment_product_lot/readme/USAGE.md b/l10n_br_fiscal_comment_product_lot/readme/USAGE.md new file mode 100644 index 0000000..84409b7 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/readme/USAGE.md @@ -0,0 +1,4 @@ +To use this module, you need to: + + 1. Follow the steps provided in the file "CONFIGURE.md". + 2. Download the fiscal document xml and search for "LOTE:", if it appears, the module is working. diff --git a/l10n_br_fiscal_comment_product_lot/static/description/index.html b/l10n_br_fiscal_comment_product_lot/static/description/index.html new file mode 100644 index 0000000..d081df4 --- /dev/null +++ b/l10n_br_fiscal_comment_product_lot/static/description/index.html @@ -0,0 +1,441 @@ + + + + + +Product Lot Fiscal Comment + + + +
+

Product Lot Fiscal Comment

+ + +

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

+

This module allows the user to enter which lot of the product was used +in comment of the fiscal document.

+

Table of contents

+ +
+

Configuration

+

To add the product lot used in the fiscal document:

+
+1. Go to **Fiscal > Configuration > Operation**.
+2. Enter the main operation of your workflow, edit and reset to draft.
+3. Click on the operation line where you want to insert the product lot comment.
+4. Go to **Extra Info**, click on the field **Comment** and select "Lote".
+5. Save, click on "Review" and "Approval" and save again.
+
+
+
+

Usage

+

To use this module, you need to:

+
+1. Follow the steps provided in the file "CONFIGURE.md".
+2. Download the fiscal document xml and search for "LOTE:", if it appears, the module is working.
+
+
+
+

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 <https://www.kmee.com.br>__:
      +
    • Bruno Corredato Botti
    • +
    +
  • +
+
+
+

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