From 6f5f4bf5ac9ffcd9bba0879931be0ae0222ef6e1 Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Thu, 7 Jan 2016 11:35:25 +0100 Subject: [PATCH] add caution note for porters --- account_bank_statement_import_base/README.rst | 4 ++++ account_bank_statement_import_base/__openerp__.py | 3 +++ 2 files changed, 7 insertions(+) diff --git a/account_bank_statement_import_base/README.rst b/account_bank_statement_import_base/README.rst index e83688f..9080828 100644 --- a/account_bank_statement_import_base/README.rst +++ b/account_bank_statement_import_base/README.rst @@ -4,6 +4,10 @@ Account Bank Statement Import ============================= +CAUTION: this module was renamed in the 9.0 branch to avoid conflicts with the +upstream account_bank_statement_import module added in odoo 9. Exercise caution +when porting. + This module add a generic wizard to import Bank Statements. It also extend the bank account module to sanitize the account number and extend the search method to use this field when searching on account_number. diff --git a/account_bank_statement_import_base/__openerp__.py b/account_bank_statement_import_base/__openerp__.py index 4680715..d3bd609 100644 --- a/account_bank_statement_import_base/__openerp__.py +++ b/account_bank_statement_import_base/__openerp__.py @@ -16,5 +16,8 @@ 'demo/partner_bank.xml', ], 'auto_install': False, +# CAUTION: this module was renamed in the 9.0 branch to avoid conflicts with the +# upstream account_bank_statement_import module added in odoo 9. Exercise caution +# when porting. 'installable': False, }