update: report_xlsx to OCA 19.0 version (19.0.1.0.2)

🤖 assisted by claude
This commit is contained in:
Ernad Husremovic 2026-03-09 22:16:29 +01:00
parent 8566ac3819
commit 32a4fa90f7
23 changed files with 201 additions and 206 deletions

View file

@ -0,0 +1,11 @@
- Adrien Peiffer \<<adrien.peiffer@acsone.eu>\>
- Sébastien Alix \<<sebastien.alix@osiell.com>\>
- Stéphane Bidoul \<<stephane.bidoul@acsone.eu>\>
- Enric Tobella \<<etobella@creublanca.es>\>
- Graeme Gellatly \<<gdgellatly@gmail.com>\>
- Cristian Salamea \<<cs@prisehub.com>\>
- Rod Schouteden \<<rod.schouteden@dynapps.be>\>
- Eugene Molotov \<<molotov@it-projects.info>\>
- Christopher Ormaza \<<chris.ormaza@forgeflow.com>\>
- Houzéfa Abbasbhay \<<houzefa.abba@xcg-consulting.fr>\>
- Le Dinh Tien \<<tien-ld@komit-consulting.com>\>

View file

@ -1,10 +0,0 @@
* Adrien Peiffer <adrien.peiffer@acsone.eu>
* Sébastien Alix <sebastien.alix@osiell.com>
* Stéphane Bidoul <stephane.bidoul@acsone.eu>
* Enric Tobella <etobella@creublanca.es>
* Graeme Gellatly <gdgellatly@gmail.com>
* Cristian Salamea <cs@prisehub.com>
* Rod Schouteden <rod.schouteden@dynapps.be>
* Eugene Molotov <molotov@it-projects.info>
* Christopher Ormaza <chris.ormaza@forgeflow.com>
* Houzéfa Abbasbhay <houzefa.abba@xcg-consulting.fr>

View file

@ -0,0 +1,7 @@
Make sure you have `xlsxwriter` Python module installed:
$ pip3 install xlsxwriter
For testing it is also necessary `xlrd` Python module installed:
$ pip3 install xlrd

View file

@ -1,7 +0,0 @@
Make sure you have ``xlsxwriter`` Python module installed::
$ pip3 install xlsxwriter
For testing it is also necessary ``xlrd`` Python module installed::
$ pip3 install xlrd

View file

@ -1,6 +1,7 @@
An example of XLSX report for partners on a module called `module_name`:
An example of XLSX report for partners on a module called
\`module_name\`:
A python class ::
A python class :
from odoo import models
@ -16,10 +17,10 @@ A python class ::
bold = workbook.add_format({'bold': True})
sheet.write(0, 0, obj.name, bold)
To manipulate the ``workbook`` and ``sheet`` objects, refer to the
`documentation <http://xlsxwriter.readthedocs.org/>`_ of ``xlsxwriter``.
To manipulate the `workbook` and `sheet` objects, refer to the
[documentation](http://xlsxwriter.readthedocs.org/) of `xlsxwriter`.
A report XML record ::
A report XML record :
<record id="action_report_partner_xlsx" model="ir.actions.report">
<field name="name">Print to XLSX</field>