mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
Import code just before commit 9ba8734f15e1a292ca27b1a026e8366a91b2a8c9 that moved the module account_bank_statement_import to Odoo Enterprise Only modifications : - add author (Odoo SA) and license (LGPL) keys in manifest - add copyright headers Odoo SA all main files
29 lines
825 B
Python
29 lines
825 B
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright 2004-2020 Odoo S.A.
|
|
# Licence LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).
|
|
|
|
{
|
|
'name': 'Account Bank Statement Import',
|
|
'category': 'Accounting/Accounting',
|
|
'version': '13.0.1.0.0',
|
|
'license': 'LGPL-3',
|
|
'depends': ['account'],
|
|
'description': """Generic Wizard to Import Bank Statements.
|
|
|
|
(This module does not include any type of import format.)
|
|
|
|
OFX and QIF imports are available in Enterprise version.""",
|
|
'author': 'Odoo SA',
|
|
'data': [
|
|
'account_bank_statement_import_view.xml',
|
|
'account_import_tip_data.xml',
|
|
'wizard/journal_creation.xml',
|
|
'views/account_bank_statement_import_templates.xml',
|
|
],
|
|
'demo': [
|
|
'demo/partner_bank.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
}
|