Skip to content

[14.0][ADD] purchase_quotation_report_tax_removal: add new module #11

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions purchase_quotation_report_tax_removal/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
=====================================
Purchase Quotation Report Tax Removal
=====================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:7bd08dc3ee5bba3f8badf9bf8dd505f95c50f8c628f0c28b2b8e9172b83373f3
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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|

This custom module allows for the Removal Of Taxes in the Purchase Quotation Report, providing a specific solution for customization needs in Odoo.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/Escodoo/purchase-addons/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 <https://github.com/Escodoo/purchase-addons/issues/new?body=module:%20purchase_quotation_report_tax_removal%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
~~~~~~~

* Escodoo

Contributors
~~~~~~~~~~~~

* Marcel Savegnago <marcel.savegnago@escodoo.com.br>
* Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>

Maintainers
~~~~~~~~~~~

This module is part of the `Escodoo/purchase-addons <https://github.com/Escodoo/purchase-addons/tree/14.0/purchase_quotation_report_tax_removal>`_ project on GitHub.

You are welcome to contribute.
16 changes: 16 additions & 0 deletions purchase_quotation_report_tax_removal/__manifest__.py
Original file line number Diff line number Diff line change
@@ -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",
],
}
2 changes: 2 additions & 0 deletions purchase_quotation_report_tax_removal/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Marcel Savegnago <marcel.savegnago@escodoo.com.br>
* Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This custom module allows for the Removal Of Taxes in the Purchase Quotation Report, providing a specific solution for customization needs in Odoo.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo>
<template
id="report_purchaseorder_document"
name="report_purchaseorder_document in (purchase_quotation_report_tax_removal)"
inherit_id="purchase.report_purchaseorder_document"
>
<!-- Hiding the taxes column header -->
<xpath expr="//th[@name='th_taxes']" position="attributes">
<attribute name="class">d-none</attribute>
</xpath>
<!-- Hiding the taxes column content -->
<xpath expr="//td[@name='td_taxes']" position="attributes">
<attribute name="class">d-none</attribute>
</xpath>
</template>
</odoo>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading