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.
35 lines
906 B
35 lines
906 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2013 XCG Consulting (http://odoo.consulting)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
{
|
|
'name': 'LibreOffice Report Engine',
|
|
'description': '''
|
|
Generation of LibreOffice/OpenOffice reports using LibreOffice/OpenOffice
|
|
templates.
|
|
|
|
The py3o.template package is required; install it with:
|
|
pip install py3o.template
|
|
''',
|
|
'version': '9.0.1.0.0',
|
|
'category': 'Reporting',
|
|
'author': 'XCG Consulting',
|
|
'website': 'http://odoo.consulting/',
|
|
'depends': [
|
|
'base',
|
|
'report'
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['py3o.template']
|
|
},
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
|
|
'views/menu.xml',
|
|
'views/py3o_template.xml',
|
|
'views/py3o_server.xml',
|
|
'views/ir_report.xml',
|
|
|
|
'data/py3o.fusion.filetype.csv',
|
|
],
|
|
'installable': True,
|
|
}
|