forked from Mapan/odoo17e
22 lines
529 B
Python
22 lines
529 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Belgium - Accounting Reports - SMS',
|
|
'countries': ['be'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Bridge module between belgian accounting and SMS
|
|
""",
|
|
'depends': [
|
|
'l10n_be_reports', 'sms'
|
|
],
|
|
'data': [
|
|
'views/res_partner_views.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|