31 lines
1014 B
Python
31 lines
1014 B
Python
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
|
|
|
|
{
|
|
"name": "Excel Import/Export/Report",
|
|
"summary": "Base module for developing Excel import/export/report",
|
|
"version": "16.0.1.3.1",
|
|
"author": "Ecosoft,Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"website": "https://github.com/OCA/server-tools",
|
|
"category": "Tools",
|
|
"depends": ["mail"],
|
|
"external_dependencies": {"python": ["openpyxl"]},
|
|
"data": [
|
|
"security/ir.model.access.csv",
|
|
"wizard/export_xlsx_wizard.xml",
|
|
"wizard/import_xlsx_wizard.xml",
|
|
"wizard/report_xlsx_wizard.xml",
|
|
"views/xlsx_template_view.xml",
|
|
"views/xlsx_report.xml",
|
|
],
|
|
"installable": True,
|
|
"development_status": "Beta",
|
|
"maintainers": ["kittiu"],
|
|
"assets": {
|
|
"web.assets_backend": [
|
|
"/excel_import_export/static/src/js/report/action_manager_report.esm.js"
|
|
]
|
|
},
|
|
}
|