mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[IMP] report_qweb_element_page_visibility: black, isort, prettier
This commit is contained in:
@@ -17,23 +17,23 @@ Report Qweb Element Page Visibility
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/reporting-engine/tree/16.0/report_qweb_element_page_visibility
|
||||
:target: https://github.com/OCA/reporting-engine/tree/17.0/report_qweb_element_page_visibility
|
||||
:alt: OCA/reporting-engine
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-report_qweb_element_page_visibility
|
||||
:target: https://translation.odoo-community.org/projects/reporting-engine-17-0/reporting-engine-17-0-report_qweb_element_page_visibility
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=17.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module allows you to use 4 classes in QWEB reports:
|
||||
|
||||
* not-first-page: shows element in every page but first
|
||||
* not-last-page: shows element in every page but last
|
||||
* first-page: shows element only on first page
|
||||
* last-page: shows element only on last page
|
||||
- not-first-page: shows element in every page but first
|
||||
- not-last-page: shows element in every page but last
|
||||
- first-page: shows element only on first page
|
||||
- last-page: shows element only on last page
|
||||
|
||||
**Table of contents**
|
||||
|
||||
@@ -45,22 +45,24 @@ Usage
|
||||
|
||||
To use this module, you need to:
|
||||
|
||||
In the QWEB ``ir.ui.views`` used by your report,
|
||||
you can add an element with css class with any of the classes described above.
|
||||
For example if you need to improve invoice report header with
|
||||
invoice's number in every page but first, and sale order report header
|
||||
with order's name in every page but last, add this code to external_layout_header::
|
||||
In the QWEB ``ir.ui.views`` used by your report, you can add an element
|
||||
with css class with any of the classes described above. For example if
|
||||
you need to improve invoice report header with invoice's number in every
|
||||
page but first, and sale order report header with order's name in every
|
||||
page but last, add this code to external_layout_header:
|
||||
|
||||
<t t-if="o._table=='account_invoice'">
|
||||
<div class="not-first-page">
|
||||
<span t-esc="o.number"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="o._table=='sale_order'">
|
||||
<div class="not-last-page">
|
||||
<span t-esc="o.name"/>
|
||||
</div>
|
||||
</t>
|
||||
::
|
||||
|
||||
<t t-if="o._table=='account_invoice'">
|
||||
<div class="not-first-page">
|
||||
<span t-esc="o.number"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="o._table=='sale_order'">
|
||||
<div class="not-last-page">
|
||||
<span t-esc="o.name"/>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
@@ -68,7 +70,7 @@ Bug Tracker
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/reporting-engine/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/OCA/reporting-engine/issues/new?body=module:%20report_qweb_element_page_visibility%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/reporting-engine/issues/new?body=module:%20report_qweb_element_page_visibility%0Aversion:%2017.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.
|
||||
|
||||
@@ -76,31 +78,41 @@ Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
-------
|
||||
|
||||
* Agile Business Group
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
------------
|
||||
|
||||
* Nicola Malcontenti <nicola.malcontenti@agilebg.com>
|
||||
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
||||
* Alessio Gerace <alessio.gerace@agilebg.com>
|
||||
* Alex Comba <alex.comba@agilebg.com>
|
||||
* Saran Limpajitkutaporn <saranl@ecosoft.co.th>
|
||||
* Pimolnat Suntian <pimolnats@ecosoft.co.th>
|
||||
* Tharathip Chaweewongphan <tharathipc@ecosoft.co.th>
|
||||
* `Trobz <https://trobz.com>`_:
|
||||
* Hai Lang <hailn@trobz.com>
|
||||
* Ángel Tornero Hernández <angel.tornero@braintec.com>
|
||||
- Nicola Malcontenti <nicola.malcontenti@agilebg.com>
|
||||
|
||||
- Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
||||
|
||||
- Alessio Gerace <alessio.gerace@agilebg.com>
|
||||
|
||||
- Alex Comba <alex.comba@agilebg.com>
|
||||
|
||||
- Saran Limpajitkutaporn <saranl@ecosoft.co.th>
|
||||
|
||||
- Pimolnat Suntian <pimolnats@ecosoft.co.th>
|
||||
|
||||
- Tharathip Chaweewongphan <tharathipc@ecosoft.co.th>
|
||||
|
||||
- `Trobz <https://trobz.com>`__:
|
||||
|
||||
- Hai Lang <hailn@trobz.com>
|
||||
|
||||
- Ángel Tornero Hernández <angel.tornero@braintec.com>
|
||||
|
||||
Other credits
|
||||
~~~~~~~~~~~~~
|
||||
-------------
|
||||
|
||||
The migration of this module from 14.0 to 14.0 was financially supported by Camptocamp
|
||||
The migration of this module from 14.0 to 14.0 was financially supported
|
||||
by Camptocamp
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
@@ -112,6 +124,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/report_qweb_element_page_visibility>`_ project on GitHub.
|
||||
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/17.0/report_qweb_element_page_visibility>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
||||
3
report_qweb_element_page_visibility/pyproject.toml
Normal file
3
report_qweb_element_page_visibility/pyproject.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
||||
18
report_qweb_element_page_visibility/readme/CONTRIBUTORS.md
Normal file
18
report_qweb_element_page_visibility/readme/CONTRIBUTORS.md
Normal file
@@ -0,0 +1,18 @@
|
||||
- Nicola Malcontenti \<<nicola.malcontenti@agilebg.com>\>
|
||||
|
||||
- Lorenzo Battistini \<<lorenzo.battistini@agilebg.com>\>
|
||||
|
||||
- Alessio Gerace \<<alessio.gerace@agilebg.com>\>
|
||||
|
||||
- Alex Comba \<<alex.comba@agilebg.com>\>
|
||||
|
||||
- Saran Limpajitkutaporn \<<saranl@ecosoft.co.th>\>
|
||||
|
||||
- Pimolnat Suntian \<<pimolnats@ecosoft.co.th>\>
|
||||
|
||||
- Tharathip Chaweewongphan \<<tharathipc@ecosoft.co.th>\>
|
||||
|
||||
- [Trobz](https://trobz.com):
|
||||
- Hai Lang \<<hailn@trobz.com>\>
|
||||
|
||||
- Ángel Tornero Hernández \<<angel.tornero@braintec.com>\>
|
||||
@@ -1,10 +0,0 @@
|
||||
* Nicola Malcontenti <nicola.malcontenti@agilebg.com>
|
||||
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
||||
* Alessio Gerace <alessio.gerace@agilebg.com>
|
||||
* Alex Comba <alex.comba@agilebg.com>
|
||||
* Saran Limpajitkutaporn <saranl@ecosoft.co.th>
|
||||
* Pimolnat Suntian <pimolnats@ecosoft.co.th>
|
||||
* Tharathip Chaweewongphan <tharathipc@ecosoft.co.th>
|
||||
* `Trobz <https://trobz.com>`_:
|
||||
* Hai Lang <hailn@trobz.com>
|
||||
* Ángel Tornero Hernández <angel.tornero@braintec.com>
|
||||
@@ -1 +1,2 @@
|
||||
The migration of this module from 14.0 to 14.0 was financially supported by Camptocamp
|
||||
The migration of this module from 14.0 to 14.0 was financially supported
|
||||
by Camptocamp
|
||||
@@ -0,0 +1,6 @@
|
||||
This module allows you to use 4 classes in QWEB reports:
|
||||
|
||||
- not-first-page: shows element in every page but first
|
||||
- not-last-page: shows element in every page but last
|
||||
- first-page: shows element only on first page
|
||||
- last-page: shows element only on last page
|
||||
@@ -1,6 +0,0 @@
|
||||
This module allows you to use 4 classes in QWEB reports:
|
||||
|
||||
* not-first-page: shows element in every page but first
|
||||
* not-last-page: shows element in every page but last
|
||||
* first-page: shows element only on first page
|
||||
* last-page: shows element only on last page
|
||||
18
report_qweb_element_page_visibility/readme/USAGE.md
Normal file
18
report_qweb_element_page_visibility/readme/USAGE.md
Normal file
@@ -0,0 +1,18 @@
|
||||
To use this module, you need to:
|
||||
|
||||
In the QWEB `ir.ui.views` used by your report, you can add an element
|
||||
with css class with any of the classes described above. For example if
|
||||
you need to improve invoice report header with invoice's number in every
|
||||
page but first, and sale order report header with order's name in every
|
||||
page but last, add this code to external_layout_header:
|
||||
|
||||
<t t-if="o._table=='account_invoice'">
|
||||
<div class="not-first-page">
|
||||
<span t-esc="o.number"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="o._table=='sale_order'">
|
||||
<div class="not-last-page">
|
||||
<span t-esc="o.name"/>
|
||||
</div>
|
||||
</t>
|
||||
@@ -1,18 +0,0 @@
|
||||
To use this module, you need to:
|
||||
|
||||
In the QWEB ``ir.ui.views`` used by your report,
|
||||
you can add an element with css class with any of the classes described above.
|
||||
For example if you need to improve invoice report header with
|
||||
invoice's number in every page but first, and sale order report header
|
||||
with order's name in every page but last, add this code to external_layout_header::
|
||||
|
||||
<t t-if="o._table=='account_invoice'">
|
||||
<div class="not-first-page">
|
||||
<span t-esc="o.number"/>
|
||||
</div>
|
||||
</t>
|
||||
<t t-if="o._table=='sale_order'">
|
||||
<div class="not-last-page">
|
||||
<span t-esc="o.name"/>
|
||||
</div>
|
||||
</t>
|
||||
@@ -369,7 +369,7 @@ ul.auto-toc {
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:1d678cea7b242fc9e0f5be0922f75cb5f7f7002ba9b4ef8d44b4d753ac1a3b11
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/16.0/report_qweb_element_page_visibility"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-report_qweb_element_page_visibility"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/reporting-engine/tree/17.0/report_qweb_element_page_visibility"><img alt="OCA/reporting-engine" src="https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/reporting-engine-17-0/reporting-engine-17-0-report_qweb_element_page_visibility"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows you to use 4 classes in QWEB reports:</p>
|
||||
<ul class="simple">
|
||||
<li>not-first-page: shows element in every page but first</li>
|
||||
@@ -394,11 +394,11 @@ ul.auto-toc {
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
<p>To use this module, you need to:</p>
|
||||
<p>In the QWEB <tt class="docutils literal">ir.ui.views</tt> used by your report,
|
||||
you can add an element with css class with any of the classes described above.
|
||||
For example if you need to improve invoice report header with
|
||||
invoice’s number in every page but first, and sale order report header
|
||||
with order’s name in every page but last, add this code to external_layout_header:</p>
|
||||
<p>In the QWEB <tt class="docutils literal">ir.ui.views</tt> used by your report, you can add an element
|
||||
with css class with any of the classes described above. For example if
|
||||
you need to improve invoice report header with invoice’s number in every
|
||||
page but first, and sale order report header with order’s name in every
|
||||
page but last, add this code to external_layout_header:</p>
|
||||
<pre class="literal-block">
|
||||
<t t-if="o._table=='account_invoice'">
|
||||
<div class="not-first-page">
|
||||
@@ -417,7 +417,7 @@ with order’s name in every page but last, add this code to external_layout_hea
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/reporting-engine/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20report_qweb_element_page_visibility%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<a class="reference external" href="https://github.com/OCA/reporting-engine/issues/new?body=module:%20report_qweb_element_page_visibility%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
@@ -438,20 +438,17 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
||||
<li>Saran Limpajitkutaporn <<a class="reference external" href="mailto:saranl@ecosoft.co.th">saranl@ecosoft.co.th</a>></li>
|
||||
<li>Pimolnat Suntian <<a class="reference external" href="mailto:pimolnats@ecosoft.co.th">pimolnats@ecosoft.co.th</a>></li>
|
||||
<li>Tharathip Chaweewongphan <<a class="reference external" href="mailto:tharathipc@ecosoft.co.th">tharathipc@ecosoft.co.th</a>></li>
|
||||
<li><dl class="first docutils">
|
||||
<dt><a class="reference external" href="https://trobz.com">Trobz</a>:</dt>
|
||||
<dd><ul class="first last">
|
||||
<li><a class="reference external" href="https://trobz.com">Trobz</a>:<ul>
|
||||
<li>Hai Lang <<a class="reference external" href="mailto:hailn@trobz.com">hailn@trobz.com</a>></li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<li>Ángel Tornero Hernández <<a class="reference external" href="mailto:angel.tornero@braintec.com">angel.tornero@braintec.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="other-credits">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Other credits</a></h2>
|
||||
<p>The migration of this module from 14.0 to 14.0 was financially supported by Camptocamp</p>
|
||||
<p>The migration of this module from 14.0 to 14.0 was financially supported
|
||||
by Camptocamp</p>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
|
||||
@@ -460,7 +457,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/16.0/report_qweb_element_page_visibility">OCA/reporting-engine</a> project on GitHub.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/17.0/report_qweb_element_page_visibility">OCA/reporting-engine</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user