mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
23 lines
525 B
Python
23 lines
525 B
Python
# -*- encoding: utf-8 -*-
|
|
{
|
|
'name': 'Account Bank Statement Import',
|
|
'category': 'Accounting & Finance',
|
|
'version': '1.0',
|
|
'author': 'OpenERP SA',
|
|
'depends': ['account'],
|
|
'demo': [],
|
|
'description': """Generic Wizard to Import Bank Statements.
|
|
|
|
Backport from Odoo 9.0
|
|
""",
|
|
'data': [
|
|
'account_bank_statement_import_view.xml',
|
|
],
|
|
'demo': [
|
|
'demo/fiscalyear_period.xml',
|
|
'demo/partner_bank.xml',
|
|
],
|
|
'auto_install': False,
|
|
'installable': True,
|
|
}
|