flectra/addons/account_bank_statement_import/__manifest__.py

20 lines
547 B
Python
Raw Normal View History

# -*- encoding: utf-8 -*-
{
'name': 'Account Bank Statement Import',
2018-01-16 12:05:52 +01:00
'author': 'Odoo S.A',
'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,
}