Py3o Report Engine

report_py3o
REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/19.0/report_py3o
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSWeblate, OCA-git-bot, oca-ci, kopeyev
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 19:40:46
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION
The py3o reporting engine is a reporting engine for Odoo based on
\[Libreoffice\](<http://www.libreoffice.org/>):

- the report is created with Libreoffice (ODT or ODS),
- the report is stored on the server in OpenDocument format (.odt or
  .ods file)
- the report is sent to the user in OpenDocument format or in any output
  format supported by Libreoffice (PDF, HTML, DOC, DOCX, Docbook, XLS,
  etc.)

The key advantages of a Libreoffice based reporting engine are:

- no need to be a developer to create or modify a report: the report is
  created and modified with Libreoffice. So this reporting engine has a
  full WYSIWYG report development tool!
- For a PDF report in A4/Letter format, it's easier to develop it with a
  tool such as Libreoffice that is designed to create A4/Letter
  documents than to develop it in HTML/CSS, also some print
  peculiarities (backgrounds, margin boxes) are not very well supported
  by the HTML/CSS based solutions.
- If you want your users to be able to modify the document after its
  generation by Odoo, just configure the document with ODT output (or
  DOC or DOCX) and the user will be able to modify the document with
  Libreoffice (or Word) after its generation by Odoo.
- Easy development of spreadsheet reports in ODS format (XLS output
  possible).

This module *report_py3o* is the base module for the Py3o reporting
engine. If used alone, it will spawn a libreoffice process for each ODT
to PDF (or ODT to DOCX, ..) document conversion. This is slow and can
become a problem if you have a lot of reports to convert from ODT to
another format. In this case, you should consider the additionnal module
*report_py3o_fusion_server* which is designed to work with a libreoffice
daemon. With *report_py3o_fusion_server*, the technical environnement is
more complex to setup because you have to install additionnal software
components and run 2 daemons, but you have much better performances and
you can configure the libreoffice PDF export options in Odoo (allows to
generate PDF forms, PDF/A documents, password-protected PDFs,
watermarked PDFs, etc.).

This reporting engine is an alternative to
\[Aeroo\](<https://github.com/aeroo-community/aeroo_reports>): these two
reporting engines have similar features but their implementation is
entirely different. You cannot use aeroo templates as drop in
replacement though, you'll have to change a few details.

Code Analysis

Views touched (5)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template list New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    ondelete={'py3o': 'cascade'} selection_add=[('py3o', 'py3o')]
Public methods (2)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True string='Template name'
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/18.0/report_py3o
VERSION
VERSION 1.0.3
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSStéphane Bidoul, niyasraphy, Weblate, OCA-git-bot, oca-ci, r.perez, bjouini
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 19:30:07
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION
The py3o reporting engine is a reporting engine for Odoo based on
\[Libreoffice\](<http://www.libreoffice.org/>):

- the report is created with Libreoffice (ODT or ODS),
- the report is stored on the server in OpenDocument format (.odt or
  .ods file)
- the report is sent to the user in OpenDocument format or in any output
  format supported by Libreoffice (PDF, HTML, DOC, DOCX, Docbook, XLS,
  etc.)

The key advantages of a Libreoffice based reporting engine are:

- no need to be a developer to create or modify a report: the report is
  created and modified with Libreoffice. So this reporting engine has a
  full WYSIWYG report development tool!
- For a PDF report in A4/Letter format, it's easier to develop it with a
  tool such as Libreoffice that is designed to create A4/Letter
  documents than to develop it in HTML/CSS, also some print
  peculiarities (backgrounds, margin boxes) are not very well supported
  by the HTML/CSS based solutions.
- If you want your users to be able to modify the document after its
  generation by Odoo, just configure the document with ODT output (or
  DOC or DOCX) and the user will be able to modify the document with
  Libreoffice (or Word) after its generation by Odoo.
- Easy development of spreadsheet reports in ODS format (XLS output
  possible).

This module *report_py3o* is the base module for the Py3o reporting
engine. If used alone, it will spawn a libreoffice process for each ODT
to PDF (or ODT to DOCX, ..) document conversion. This is slow and can
become a problem if you have a lot of reports to convert from ODT to
another format. In this case, you should consider the additionnal module
*report_py3o_fusion_server* which is designed to work with a libreoffice
daemon. With *report_py3o_fusion_server*, the technical environnement is
more complex to setup because you have to install additionnal software
components and run 2 daemons, but you have much better performances and
you can configure the libreoffice PDF export options in Odoo (allows to
generate PDF forms, PDF/A documents, password-protected PDFs,
watermarked PDFs, etc.).

This reporting engine is an alternative to
\[Aeroo\](<https://github.com/aeroo-community/aeroo_reports>): these two
reporting engines have similar features but their implementation is
entirely different. You cannot use aeroo templates as drop in
replacement though, you'll have to change a few details.

Code Analysis

Views touched (5)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template list New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    ondelete={'py3o': 'cascade'} selection_add=[('py3o', 'py3o')]
Public methods (2)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/17.0/report_py3o
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSOCA-git-bot, oca-ci, pilarvargas-tecnativa
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 19:20:00
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION
The py3o reporting engine is a reporting engine for Odoo based on
[Libreoffice](http://www.libreoffice.org/):

- the report is created with Libreoffice (ODT or ODS),
- the report is stored on the server in OpenDocument format (.odt or
  .ods file)
- the report is sent to the user in OpenDocument format or in any output
  format supported by Libreoffice (PDF, HTML, DOC, DOCX, Docbook, XLS,
  etc.)

The key advantages of a Libreoffice based reporting engine are:

- no need to be a developer to create or modify a report: the report is
  created and modified with Libreoffice. So this reporting engine has a
  full WYSIWYG report development tool!
- For a PDF report in A4/Letter format, it's easier to develop it with a
  tool such as Libreoffice that is designed to create A4/Letter
  documents than to develop it in HTML/CSS, also some print
  peculiarities (backgrounds, margin boxes) are not very well supported
  by the HTML/CSS based solutions.
- If you want your users to be able to modify the document after its
  generation by Odoo, just configure the document with ODT output (or
  DOC or DOCX) and the user will be able to modify the document with
  Libreoffice (or Word) after its generation by Odoo.
- Easy development of spreadsheet reports in ODS format (XLS output
  possible).

This module *report_py3o* is the base module for the Py3o reporting
engine. If used alone, it will spawn a libreoffice process for each ODT
to PDF (or ODT to DOCX, ..) document conversion. This is slow and can
become a problem if you have a lot of reports to convert from ODT to
another format. In this case, you should consider the additionnal module
*report_py3o_fusion_server* which is designed to work with a libreoffice
daemon. With *report_py3o_fusion_server*, the technical environnement is
more complex to setup because you have to install additionnal software
components and run 2 daemons, but you have much better performances and
you can configure the libreoffice PDF export options in Odoo (allows to
generate PDF forms, PDF/A documents, password-protected PDFs,
watermarked PDFs, etc.).

This reporting engine is an alternative to
[Aeroo](https://github.com/aeroo-community/aeroo_reports): these two
reporting engines have similar features but their implementation is
entirely different. You cannot use aeroo templates as drop in
replacement though, you'll have to change a few details.

Code Analysis

Views touched (5)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    ondelete={'py3o': 'cascade'} selection_add=[('py3o', 'py3o')]
Public methods (2)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/16.0/report_py3o
VERSION
VERSION 1.0.6
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSAlexis de Lattre, GitHub, Thomas Binsfeld, Weblate, OCA-git-bot, oca-ci, Kevin Luna, hda, Christopher Rogos, fazledyn-or
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:53:57
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (5)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    ondelete={'py3o': 'cascade'} selection_add=[('py3o', 'py3o')]
Public methods (2)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/15.0/report_py3o
VERSION
VERSION 1.0.0
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSAlexandre D. Díaz, Weblate, OCA-git-bot, oca-ci
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:46:42
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (5)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    ondelete={'py3o': 'cascade'} selection_add=[('py3o', 'py3o')]
Public methods (2)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/14.0/report_py3o
VERSION
VERSION 1.0.4
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSStefan Rijnhart, GitHub, Elmeri Niemelä, Omar (Comunitea), Denis Leemann, oca-travis, Weblate, OCA-git-bot, Fernanda Hernández, oca-ci, Olga Marco, Héctor Vi Or
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:41:10
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (6)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
assets_backend report assets ir.ui.view qweb Inherits web.assets_backend
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report' args: 'Module'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    ondelete={'py3o': 'cascade'} selection_add=[('py3o', 'py3o')]
Public methods (2)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/13.0/report_py3o
VERSION
VERSION 1.0.6
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSStéphane Bidoul, GitHub, Laurent Mignon (ACSONE), Luis Torres, Enric Tobella, OCA Transbot, oca-travis, Weblate, OCA-git-bot, gaikaz, hda
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:34:19
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (6)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
assets_backend report assets ir.ui.view qweb Inherits web.assets_backend
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (3)

New fields (11)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report' args: 'Module'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    selection_add=[('py3o', 'py3o')]
  • report_type Selection
    selection_add=[('py3o', 'Py3o')]
Public methods (3)
  • gen_report_download_filename(self, res_ids, data)
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model
  • render_py3o(self, res_ids, data)

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/12.0/report_py3o
VERSION
VERSION 2.1.2
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSGitHub, Laurent Mignon (ACSONE), Enric Tobella, Stéphane Bidoul (ACSONE), sbejaoui, OCA Transbot, oca-travis, Weblate, OCA-git-bot, hparfr, Pierrick Brun, Rachmat Aditiya
WEBSITE
WEBSITEhttps://github.com/OCA/reporting-engine
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:29:24
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - web
    - base
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES PyPDF2
py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES libreoffice
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (6)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report field Inherits base.act_report_xml_search_view
assets_backend report assets ir.ui.view qweb Inherits web.assets_backend
py3o_report_view py3o_report_view ir.actions.report xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (3)

New fields (10)
  • is_py3o_native_format Boolean
    compute='_compute_is_py3o_native_format'
  • is_py3o_report_not_available Boolean
    compute='_compute_py3o_report_not_available'
  • lo_bin_path Char
    compute='_compute_lo_bin_path' string='Path to the libreoffice runtime'
  • module Char
    help='The implementer module that provides this report' args: 'Module'
  • msg_py3o_report_not_available Char
    compute='_compute_py3o_report_not_available'
  • py3o_filetype Selection
    default=_default_py3o_filetypes selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    selection_add=[('py3o', 'py3o')]
Public methods (3)
  • gen_report_download_filename(self, res_ids, data)
    @api.multi
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model
  • render_py3o(self, res_ids, data)
    @api.multi

New fields (1)
  • ir_actions_report_id Many2one → ir.actions.report
    comodel_name='ir.actions.report' ondelete='cascade' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    @api.multi
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    @api.multi
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

REPOSITORY
REPOSITORYOCA/reporting-engine
GIT
GIThttps://github.com/OCA/reporting-engine.git
GIT FOLDER
GIT FOLDERhttps://github.com/OCA/reporting-engine/tree/10.0/report_py3o
VERSION
VERSION 2.0.2
CATEGORY
CATEGORYReporting
LICENSE
LICENSEAGPL-3
APPLICATION
APPLICATIONNo
AUTO-INSTALLABLE
AUTO-INSTALLABLENo
AUTHORS
AUTHORSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
MAINTAINERS
MAINTAINERSOdoo Community Association (OCA), ACSONE SA/NV, XCG Consulting
COMMITTERS
COMMITTERSAlexis de Lattre, Guewen Baconnier, Holger Brunn, GitHub, Laurent Mignon (ACSONE), OCA Transbot, Laurent Mignon, oca-travis, Weblate, Omar, Jonathan Nemry (ACSONE), jesusVMayor, Simone Rubino, Florent AIDE
WEBSITE
WEBSITEhttp://odoo.consulting/
LAST TRACKING UPDATE
LAST TRACKING UPDATE2026-07-06 00:20:02
ODOO DEPENDENCIES
ODOO DEPENDENCIES odoo/odoo:
    - report
    - base
    - web
    - base_setup
    - web_kanban
PYTHON DEPENDENCIES
PYTHON DEPENDENCIES py3o.formats
py3o.template
SYSTEM DEPENDENCIES
SYSTEM DEPENDENCIES Not have
DESCRIPTION
DESCRIPTION

Code Analysis

Views touched (6)
XML IDNameModelTypeStatus
act_report_xml_search_view py3o_report_search_view ir.actions.report.xml field Inherits base.act_report_xml_search_view
assets_backend report assets ir.ui.view qweb Inherits web.assets_backend
py3o_report_view py3o_report_view ir.actions.report.xml xpath Inherits base.act_report_xml_view
py3o_template_configuration_form_view py3o.template.configuration.form.view py3o.template form New
py3o_template_configuration_search_view py3o.template.configuration.search.view py3o.template search New
py3o_template_configuration_tree_view py3o.template.configuration.tree.view py3o.template tree New
Models touched (4)

New fields (6)
  • module Char
    help='The implementer module that provides this report' args: 'Module'
  • py3o_filetype Selection
    selection='_get_py3o_filetypes' string='Output Format'
  • py3o_multi_in_one Boolean
    help='If you execute a report on several records, by default Odoo will generate a ZIP file that contains as many files as selected records. If you enable this option, Odoo will generate instead a single report for the selected records.' string='Multiple Records in a Single Report'
  • py3o_template_fallback Char
    help='If the user does not provide a template this will be used it should be a relative path to root of YOUR module or an absolute path on your server.' size=128 args: 'Fallback'
  • py3o_template_id Many2one → py3o.template
    args: 'py3o.template', 'Template'
  • report_type Selection
    selection_add=[('py3o', 'Py3o')]
Public methods (3)
  • gen_report_download_filename(self, res_ids, data)
    @api.multi
    Override this function to change the name of the downloaded report
  • get_from_report_name(self, report_name, report_type)
    @api.model
  • render_report(self, res_ids, name, data)
    @api.model

New fields (1)
  • ir_actions_report_xml_id Many2one → ir.actions.report.xml
    comodel_name='ir.actions.report.xml' required=True
Public methods (2)
  • create_report(self, res_ids, data)
    @api.multi
    Override this function to handle our py3o report
  • get_template(self, model_instance)
    @api.multi
    private helper to fetch the template data either from the database or from the default template file provided by the implementer. ATM this method takes a report definition recordset to try and fetch the report template from database. If not found it will fallback to the template file referenced in the report definition. @returns: string or buffer containing the template data @raises: TemplateNotFound which is a subclass of odoo.exceptions.DeferredException

New fields (3)
  • filetype Selection
    default='odt' required=True selection=[('odt', 'ODF Text Document'), ('ods', 'ODF Spreadsheet'), ('odp', 'ODF Presentation'), ('fodt', 'ODF Text Document (Flat)'), ('fods', 'ODF Spreadsheet (Flat)'), ('fodp', 'ODF Presentation (Flat)')] string='LibreOffice Template File Type'
  • name Char
    required=True
  • py3o_template_data Binary
    args: 'LibreOffice Template'
Public methods (0)

No public methods.

New fields (0)

No new fields.

Public methods (0)

No public methods.