You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
968 B
30 lines
968 B
# 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': '12.0.1.0.4',
|
|
'author': 'Ecosoft,Odoo Community Association (OCA)',
|
|
'license': 'AGPL-3',
|
|
'website': 'https://github.com/OCA/server-tools/',
|
|
'category': 'Tools',
|
|
'depends': ['mail'],
|
|
'external_dependencies': {
|
|
'python': [
|
|
'xlrd',
|
|
'xlwt',
|
|
'openpyxl',
|
|
],
|
|
},
|
|
'data': ['security/ir.model.access.csv',
|
|
'wizard/export_xlsx_wizard.xml',
|
|
'wizard/import_xlsx_wizard.xml',
|
|
'views/xlsx_template_view.xml',
|
|
'views/xlsx_report.xml',
|
|
'views/webclient_templates.xml',
|
|
],
|
|
'installable': True,
|
|
'development_status': 'beta',
|
|
'maintainers': ['kittiu'],
|
|
}
|