mirror of
https://github.com/bringout/oca-report.git
synced 2026-04-25 00:02:01 +02:00
update: report_xlsx to OCA 19.0 version (19.0.1.0.2)
🤖 assisted by claude
This commit is contained in:
parent
8566ac3819
commit
32a4fa90f7
23 changed files with 201 additions and 206 deletions
|
|
@ -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>\>
|
||||
|
|
@ -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>
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue