flectra/addons/account_bank_statement_import/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

19 lines
521 B
Python

# -*- encoding: utf-8 -*-
{
'name': 'Account Bank Statement Import',
'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,
}