Skip to content
Open
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
27 changes: 27 additions & 0 deletions report_sale_order_line_subtotals_tax_excluded/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

=============================================
Report sale order line subtotals tax excluded
=============================================

* In sale order report print amount without tax.

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

Bugs are tracked on `GitHub Issues
<https://github.com/avanzosc/sale-addons/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

Contributors
------------
* Ana Juaristi <ajuaristio@gmail.com>
* Alfredo de la Fuente <alfredodelafuente@avanzosc.es>

Do not contact contributors directly about support or help with technical issues.
Empty file.
17 changes: 17 additions & 0 deletions report_sale_order_line_subtotals_tax_excluded/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2026 Alfredo de la Fuente - AvanzOSC
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Report Sale Order Line Subtotals Tax Excluded",
"version": "16.0.1.0.0",
"category": "Sales/Sales",
"license": "AGPL-3",
"author": "AvanzOSC",
"website": "https://github.com/avanzosc/sale-addons",
"depends": [
"sale",
],
"data": [
"report/sale_order_report.xml",
],
"installable": True,
}
21 changes: 21 additions & 0 deletions report_sale_order_line_subtotals_tax_excluded/i18n/en_GB.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * report_sale_order_line_subtotals_tax_excluded
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-07 07:53+0000\n"
"PO-Revision-Date: 2026-01-07 07:53+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: report_sale_order_line_subtotals_tax_excluded
#: model_terms:ir.ui.view,arch_db:report_sale_order_line_subtotals_tax_excluded.report_saleorder_document
msgid "<span>Amount</span>"
msgstr ""
21 changes: 21 additions & 0 deletions report_sale_order_line_subtotals_tax_excluded/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * report_sale_order_line_subtotals_tax_excluded
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-07 07:54+0000\n"
"PO-Revision-Date: 2026-01-07 07:54+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: report_sale_order_line_subtotals_tax_excluded
#: model_terms:ir.ui.view,arch_db:report_sale_order_line_subtotals_tax_excluded.report_saleorder_document
msgid "<span>Amount</span>"
msgstr "<span>Importe</span>"
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * report_sale_order_line_subtotals_tax_excluded
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-07 07:53+0000\n"
"PO-Revision-Date: 2026-01-07 07:53+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: report_sale_order_line_subtotals_tax_excluded
#: model_terms:ir.ui.view,arch_db:report_sale_order_line_subtotals_tax_excluded.report_saleorder_document
msgid "<span>Amount</span>"
msgstr ""
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template
id="report_saleorder_document"
inherit_id="sale.report_saleorder_document"
priority="100"
>
<th name="th_subtotal" position="replace">
<th name="th_subtotal" class="text-end">
<span>Amount</span>
</th>
</th>
<span t-field="line.price_total" position="replace" />
<span t-field="line.price_subtotal" position="attributes">
<attribute name="groups" />
</span>
</template>
</odoo>
6 changes: 6 additions & 0 deletions setup/report_sale_order_line_subtotals_tax_excluded/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)