docx_report_generation/__manifest__.py

30 lines
1.1 KiB
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": """
2022-03-18 17:37:24 +05:00
Adds generation reports from .docx templates like standard Odoo reports
2021-07-26 13:37:54 +05:00
with qweb templates. Standard Odoo reports also available.
2022-03-18 17:37:24 +05:00
For generating .pdf from .docx external service the "Gotenberg" is used,
and it required module for integration with this service: "gotenberg".
If integration module "gotenberg" is absent, or service itself unreachable
there will be only reports in docx format.
This is the beta version, bugs may be present.
2021-07-26 13:37:54 +05:00
""",
2019-12-17 09:53:47 +05:00
"author": "RYDLAB",
"website": "http://rydlab.ru",
"category": "Technical",
2022-03-18 17:37:24 +05:00
"version": "0.8.1",
2021-07-26 13:37:54 +05:00
"depends": ["base", "web", "custom_report_field", "report_monetary_helpers"],
2022-06-10 18:38:22 +05:00
"external_dependencies": {"python": ["docxcompose", "docxtpl", "bs4"]},
2019-12-17 09:53:47 +05:00
"data": [
"views/ir_actions_report_views.xml",
2018-11-08 17:16:01 +05:00
],
2022-05-11 16:22:20 +05:00
"assets": {
"web.assets_backend": [
"docx_report/static/src/css/mimetypes.css",
"docx_report/static/src/js/action_manager_report.js",
],
},
2018-11-08 17:16:01 +05:00
}