diff --git a/purchase_quotation_report_tax_removal/README.rst b/purchase_quotation_report_tax_removal/README.rst new file mode 100644 index 0000000..71dfbcf --- /dev/null +++ b/purchase_quotation_report_tax_removal/README.rst @@ -0,0 +1,54 @@ +===================================== +Purchase Quotation Report Tax Removal +===================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:9c308a4fb4451e96b989f7ba7b4a809e7ceb65189a5522847d32753ba733b18c + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-Escodoo%2Fpurchase--addons-lightgray.png?logo=github + :target: https://github.com/Escodoo/purchase-addons/tree/14.0/purchase_quotation_report_tax_removal + :alt: Escodoo/purchase-addons + +|badge1| |badge2| |badge3| + + +**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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Escodoo + +Maintainers +~~~~~~~~~~~ + +This module is part of the `Escodoo/purchase-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/purchase_quotation_report_tax_removal/__manifest__.py b/purchase_quotation_report_tax_removal/__manifest__.py new file mode 100644 index 0000000..d6aee80 --- /dev/null +++ b/purchase_quotation_report_tax_removal/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2024 - TODAY, Escodoo +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Purchase Quotation Report Tax Removal", + "summary": """ + Removal Of Taxes in the Purchase Quotation Report""", + "version": "14.0.1.0.0", + "license": "AGPL-3", + "author": "Escodoo", + "website": "https://github.com/Escodoo/purchase-addons", + "depends": ["purchase"], + "data": [ + "report/purchase_order_templates.xml", + ], +} diff --git a/purchase_quotation_report_tax_removal/readme/CONTRIBUTORS.rst b/purchase_quotation_report_tax_removal/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..e69de29 diff --git a/purchase_quotation_report_tax_removal/readme/DESCRIPTION.rst b/purchase_quotation_report_tax_removal/readme/DESCRIPTION.rst new file mode 100644 index 0000000..e69de29 diff --git a/purchase_quotation_report_tax_removal/readme/USAGE.rst b/purchase_quotation_report_tax_removal/readme/USAGE.rst new file mode 100644 index 0000000..e69de29 diff --git a/purchase_quotation_report_tax_removal/report/purchase_order_templates.xml b/purchase_quotation_report_tax_removal/report/purchase_order_templates.xml new file mode 100644 index 0000000..0584cf3 --- /dev/null +++ b/purchase_quotation_report_tax_removal/report/purchase_order_templates.xml @@ -0,0 +1,19 @@ + + + + + diff --git a/purchase_quotation_report_tax_removal/static/description/icon.png b/purchase_quotation_report_tax_removal/static/description/icon.png new file mode 100644 index 0000000..12ab005 Binary files /dev/null and b/purchase_quotation_report_tax_removal/static/description/icon.png differ diff --git a/purchase_quotation_report_tax_removal/static/description/index.html b/purchase_quotation_report_tax_removal/static/description/index.html new file mode 100644 index 0000000..f085770 --- /dev/null +++ b/purchase_quotation_report_tax_removal/static/description/index.html @@ -0,0 +1,407 @@ + + + + + +Purchase Quotation Report Tax Removal + + + +
+

Purchase Quotation Report Tax Removal

+ + +

Beta License: AGPL-3 Escodoo/purchase-addons

+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Escodoo
  • +
+
+
+

Maintainers

+

This module is part of the Escodoo/purchase-addons project on GitHub.

+

You are welcome to contribute.

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