forked from Mapan/odoo17e
30 lines
983 B
Python
30 lines
983 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'CodaBox',
|
|
'version': '1.0',
|
|
'author': 'Odoo',
|
|
'website': 'https://www.odoo.com/documentation/17.0/applications/finance/fiscal_localizations/belgium.html#codabox',
|
|
'category': 'Accounting/Localizations',
|
|
'summary': 'For Accounting Firms',
|
|
'description': '''This module allows Accounting Firms to connect to CodaBox
|
|
and automatically import CODA and SODA statements for their clients in Odoo.
|
|
The connection must be done by the Accounting Firm.
|
|
''',
|
|
'depends': [
|
|
'l10n_be_coda',
|
|
'l10n_be_soda',
|
|
],
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
'views/account_journal_views.xml',
|
|
'data/ir_cron.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'l10n_be_codabox/static/src/components/**/*',
|
|
],
|
|
},
|
|
'license': 'OEEL-1',
|
|
'pre_init_hook': '_l10n_be_codabox_pre_init_hook',
|
|
}
|