docx_report_generation/__manifest__.py

22 lines
852 B
Python
Raw Normal View History

2018-11-08 17:16:01 +05:00
{
"name": "DOCX report",
2021-07-26 13:37:54 +05:00
"summary": """Printing reports in docx format from docx templates.""",
"description": """
Adds docx reports printing from docx templates like standard Odoo reports
with qweb templates. Standard Odoo reports also available.
For generating pdf from docx external service the "gotenberg" is used.
It should work at the same server as Odoo app. If "gotenberg" absent, there
will be only reports in docx format.
""",
2019-12-17 09:53:47 +05:00
"author": "RYDLAB",
"website": "http://rydlab.ru",
"category": "Technical",
"version": "0.0.1",
2021-07-26 13:37:54 +05:00
"depends": ["base", "web", "custom_report_field", "report_monetary_helpers"],
"external_dependencies": {"python": ["docxcompose", "docxtpl"]},
2019-12-17 09:53:47 +05:00
"data": [
"views/assets.xml",
"views/ir_actions_report_views.xml",
2018-11-08 17:16:01 +05:00
],
}