Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[ADD] remove product taxes in purchase report #3

Merged
merged 1 commit into from
May 15, 2024
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
83 changes: 83 additions & 0 deletions purchase_report_hide_taxes/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
==========================
Purchase Report Hide Taxes
==========================

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

.. |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
:target: https://github.com/KMEE/kmee-odoo-addons/tree/14.0/purchase_report_hide_taxes
:alt: KMEE/kmee-odoo-addons

|badge1| |badge2|

This module removes the product taxes in the purchase order report.

**Table of contents**

.. contents::
:local:

Use Cases / Context
===================

The module was created for the following reason:

::

• Some company products have a lot of taxes, this causes the product's tax column to break the formatting in the purchase order report.

Configuration
=============

This module does not require any special configuration.

Usage
=====

To use this module, you need to:

::

1. Go to "Purchase"
2. Print the purchase order report and verify if the product taxes has been removed.

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

Bugs are tracked on `GitHub Issues <https://github.com/KMEE/kmee-odoo-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/KMEE/kmee-odoo-addons/issues/new?body=module:%20purchase_report_hide_taxes%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
-------

* KMEE

Contributors
------------

- ``KMEE <https://www.Kmee.com.br>`` :

- Bruno Corredato Botti [email protected]

Maintainers
-----------

This module is part of the `KMEE/kmee-odoo-addons <https://github.com/KMEE/kmee-odoo-addons/tree/14.0/purchase_report_hide_taxes>`_ project on GitHub.

You are welcome to contribute.
Empty file.
17 changes: 17 additions & 0 deletions purchase_report_hide_taxes/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2024 KMEE
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Purchase Report Hide Taxes",
"version": "14.0.1.0.0",
"license": "",
"author": "KMEE",
"website": "https://github.com/KMEE/kmee-odoo-addons",
"depends": [
"purchase",
],
"data": [
"report/purchase_report.xml",
],
"demo": [],
}
1 change: 1 addition & 0 deletions purchase_report_hide_taxes/readme/CONFIGURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module does not require any special configuration.
3 changes: 3 additions & 0 deletions purchase_report_hide_taxes/readme/CONTEXT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The module was created for the following reason:

• Some company products have a lot of taxes, this causes the product's tax column to break the formatting in the purchase order report.
3 changes: 3 additions & 0 deletions purchase_report_hide_taxes/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `KMEE <https://www.Kmee.com.br>` :

* Bruno Corredato Botti <[email protected]>
1 change: 1 addition & 0 deletions purchase_report_hide_taxes/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module removes the product taxes in the purchase order report.
4 changes: 4 additions & 0 deletions purchase_report_hide_taxes/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
To use this module, you need to:

1. Go to "Purchase"
2. Print the purchase order report and verify if the product taxes has been removed.
22 changes: 22 additions & 0 deletions purchase_report_hide_taxes/report/purchase_report.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version='1.0' encoding='utf-8' ?>
<odoo>
<template
id="purchase_report_hide_taxes"
name="purchase_hide_taxes"
inherit_id="purchase.report_purchaseorder_document"
priority="100"
>

<xpath expr="//th[@name='th_taxes']" position="replace">
</xpath>

<xpath expr="//td[@name='td_taxes']" position="replace">
</xpath>

<xpath
expr="//div[@id='total']/div/table/tr/td[@name='td_taxes_label']"
position="replace"
>
</xpath>
</template>
</odoo>
Loading
Loading