forked from Mapan/odoo17e
24 lines
709 B
Python
24 lines
709 B
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Belgium - Import SODA files',
|
|
'countries': ['be'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations',
|
|
'description': '''
|
|
Module to import SODA files.
|
|
======================================
|
|
''',
|
|
'depends': ['account_accountant', 'l10n_be'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/account_journal_dashboard_view.xml',
|
|
'views/account_move_views.xml',
|
|
'wizard/soda_import_wizard.xml',
|
|
],
|
|
'auto_install': True,
|
|
'website': 'https://www.odoo.com/app/accounting',
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|