diff --git a/README.md b/README.md index ba74326c8..3d1bf3ec8 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ addon | version | maintainers | summary [bi_sql_editor](bi_sql_editor/) | 18.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | BI Views builder, based on Materialized or Normal SQL Views [report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 18.0.1.0.0 | | Add new parameters for a paper format to be used by wkhtmltopdf command as arguments. [report_xlsx](report_xlsx/) | 18.0.1.0.0 | | Base module to create xlsx report +[report_xlsx_helper](report_xlsx_helper/) | 18.0.1.0.0 | | Report xlsx helpers [sql_export](sql_export/) | 18.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) [![florian-dacosta](https://github.com/florian-dacosta.png?size=30px)](https://github.com/florian-dacosta) | Export data in csv file with SQL requests [sql_request_abstract](sql_request_abstract/) | 18.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Abstract Model to manage SQL Requests diff --git a/report_xlsx_helper/README.rst b/report_xlsx_helper/README.rst index d12541d34..598066630 100644 --- a/report_xlsx_helper/README.rst +++ b/report_xlsx_helper/README.rst @@ -7,7 +7,7 @@ Report xlsx helpers !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:df481003a65f02d5bf2edcc90f4238033b81c3fa5120209c2e36e25b1cdabb77 + !! source digest: sha256:51c08e51753e66aaa44729edb763aa2040d8dbd847e0091bc1ae4f916c9ee178 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png @@ -47,36 +47,36 @@ Usage In order to create an Excel report you can define a report of type 'xlsx' in a static or dynamic way: -- Static syntax: cf. ``account_move_line_report_xls`` for an example. -- Dynamic syntax: cf. ``report_xlsx_helper_demo`` for an example +- Static syntax: cf. ``account_move_line_report_xls`` for an example. +- Dynamic syntax: cf. ``report_xlsx_helper_demo`` for an example The ``AbstractReportXlsx`` class contains a number of attributes and methods to facilitate the creation excel reports in Odoo. -- Cell types +- Cell types - string, number, boolean, datetime. + string, number, boolean, datetime. -- Cell formats +- Cell formats - The predefined cell formats result in a consistent look and feel of - the Odoo Excel reports. + The predefined cell formats result in a consistent look and feel of + the Odoo Excel reports. -- Cell formulas +- Cell formulas - Cell formulas can be easily added with the help of the - ``_rowcol_to_cell()`` method. + Cell formulas can be easily added with the help of the + ``_rowcol_to_cell()`` method. -- Excel templates +- Excel templates - It is possible to define Excel templates which can be adapted by - 'inherited' modules. Download the ``account_move_line_report_xls`` - module from http://apps.odoo.com as example. + It is possible to define Excel templates which can be adapted by + 'inherited' modules. Download the ``account_move_line_report_xls`` + module from http://apps.odoo.com as example. -- Excel with multiple sheets +- Excel with multiple sheets - Download the ``account_asset_management_xls`` module from - http://apps.odoo.com as example. + Download the ``account_asset_management_xls`` module from + http://apps.odoo.com as example. Bug Tracker =========== @@ -99,15 +99,15 @@ Authors Contributors ------------ -- Luc De Meyer +- Luc De Meyer -- Rattapong Chokmasermkul +- Rattapong Chokmasermkul -- Saran Lim. +- Saran Lim. -- `Sinerkia Innovación y Desarrollo S.L. `__: +- `Sinerkia Innovación y Desarrollo S.L. `__: - - Luis Pomar + - Luis Pomar Maintainers ----------- diff --git a/report_xlsx_helper/static/description/index.html b/report_xlsx_helper/static/description/index.html index d40b1ba76..9d27a6423 100644 --- a/report_xlsx_helper/static/description/index.html +++ b/report_xlsx_helper/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:df481003a65f02d5bf2edcc90f4238033b81c3fa5120209c2e36e25b1cdabb77 +!! source digest: sha256:51c08e51753e66aaa44729edb763aa2040d8dbd847e0091bc1ae4f916c9ee178 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Mature License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runboat

This module provides a set of tools to facilitate the creation of excel diff --git a/setup/_metapackage/pyproject.toml b/setup/_metapackage/pyproject.toml index 22ad027e7..785e04cd4 100644 --- a/setup/_metapackage/pyproject.toml +++ b/setup/_metapackage/pyproject.toml @@ -1,11 +1,12 @@ [project] name = "odoo-addons-oca-reporting-engine" -version = "18.0.20250122.1" +version = "18.0.20250210.0" dependencies = [ "odoo-addon-base_comment_template==18.0.*", "odoo-addon-bi_sql_editor==18.0.*", "odoo-addon-report_wkhtmltopdf_param==18.0.*", "odoo-addon-report_xlsx==18.0.*", + "odoo-addon-report_xlsx_helper==18.0.*", "odoo-addon-sql_export==18.0.*", "odoo-addon-sql_request_abstract==18.0.*", ]