[ADD]report_xlsx_boilerplate

New addon to have the possibility to add Excel boilerplate templates. This can be useful for those reports where we want to always have a predetermined structure in which we then want to add more information.
Example: we always now that the Column Headers will be: Header 1, Header 2, ... We can add the Boilerplate with the Headers, and from there, in the `generate_xlsx_report` method, we will already have the predefined Excel so that we can edit on top of it.
This commit is contained in:
GuillemCForgeFlow
2023-10-13 15:18:14 +02:00
parent 60b69e56e9
commit c0b1078028
13 changed files with 322 additions and 0 deletions

View File

@@ -0,0 +1 @@
../../../../report_xlsx_boilerplate

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)