2018-01-16 06:58:15 +01:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
{
|
|
|
|
'name': 'Account Bank Statement Import',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author': 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'category': 'Accounting',
|
|
|
|
'version': '1.0',
|
|
|
|
'depends': ['account'],
|
|
|
|
'description': """Generic Wizard to Import Bank Statements. Includes the import of files in .OFX format""",
|
|
|
|
'data': [
|
|
|
|
'account_bank_statement_import_view.xml',
|
|
|
|
'account_import_tip_data.xml',
|
|
|
|
'wizard/journal_creation.xml',
|
|
|
|
],
|
|
|
|
'demo': [
|
|
|
|
'demo/partner_bank.xml',
|
|
|
|
],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': True,
|
|
|
|
}
|