diff --git a/account_statement_ext/__init__.py b/account_statement_ext/__init__.py index a2a4b3ca..7194652a 100644 --- a/account_statement_ext/__init__.py +++ b/account_statement_ext/__init__.py @@ -22,3 +22,4 @@ import statement import report import account +import voucher \ No newline at end of file diff --git a/account_statement_ext/__openerp__.py b/account_statement_ext/__openerp__.py index 0ca3951b..6e6bcbb1 100644 --- a/account_statement_ext/__openerp__.py +++ b/account_statement_ext/__openerp__.py @@ -63,6 +63,8 @@ all the erronous line in a same popup instead of raising and crashing on every step. 4) Remove the period on the bank statement, and compute it for each line based on their date instead. + It also add this feature in the voucher in order to compute the period correctly. + 5) Cancelling a bank statement is much more easy and will cancel all related entries, unreconcile them, and finally delete them. diff --git a/account_statement_ext_voucher/__init__.py b/account_statement_ext_voucher/__init__.py index 3ddc934d..50fd0bc5 100644 --- a/account_statement_ext_voucher/__init__.py +++ b/account_statement_ext_voucher/__init__.py @@ -18,5 +18,3 @@ # along with this program. If not, see . # ############################################################################## - -import statement_voucher diff --git a/account_statement_ext_voucher/__openerp__.py b/account_statement_ext_voucher/__openerp__.py index 059e4163..e0a22552 100644 --- a/account_statement_ext_voucher/__openerp__.py +++ b/account_statement_ext_voucher/__openerp__.py @@ -30,8 +30,12 @@ 'account_voucher' ], 'description': """ - This module is only needed when using account_bank_statement_ext with voucher in order to compute the period + This module is deprecated. It was only needed when using account_bank_statement_ext with voucher in order to compute the period correctly. This is mainly because with account_bank_statement_ext, the period is computed for each line. + + Now, we include this in the account_statement_ext module and added a dependencies on account_voucher (mainly cause we can't get + rid of the voucher in version 7.0). + """, 'website': 'http://www.camptocamp.com', 'init_xml': [], @@ -40,9 +44,9 @@ ], 'demo_xml': [], 'test': [], - 'installable': True, + 'installable': False, 'images': [], - 'auto_install': True, + 'auto_install': False, 'license': 'AGPL-3', } diff --git a/account_statement_ext_voucher/statement_voucher_view.xml b/account_statement_ext_voucher/statement_voucher_view.xml deleted file mode 100644 index 25160599..00000000 --- a/account_statement_ext_voucher/statement_voucher_view.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - account.bank.statement.invoice.form.inherit - account.bank.statement - form - - - - - - - - -