Skip to content

Commit

Permalink
[ADD] purchase_quotation_report_tax_removal: add new module
Browse files Browse the repository at this point in the history
  • Loading branch information
kaynnan committed Mar 11, 2024
1 parent 4e2d8fe commit 81a99ed
Show file tree
Hide file tree
Showing 10 changed files with 503 additions and 0 deletions.
54 changes: 54 additions & 0 deletions purchase_quotation_report_tax_removal/README.rst
Original file line number Diff line number Diff line change
@@ -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 <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

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",
],
}
Empty file.
Empty file.
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

0 comments on commit 81a99ed

Please # to comment.