2018-11-08 17:16:01 +05:00
|
|
|
{
|
2021-05-21 04:25:00 +04: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",
|
2024-03-01 18:53:54 +05:00
|
|
|
"website": "https://rydlab.ru",
|
2021-05-21 04:25:00 +04:00
|
|
|
"category": "Technical",
|
2024-02-07 21:12:03 +05:00
|
|
|
"version": "16.0.1.0.0",
|
|
|
|
"license": "LGPL-3",
|
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": [
|
2021-05-21 04:25:00 +04:00
|
|
|
"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
|
|
|
}
|