From c44a194deee7bec39668ca91e00aaa48bf4b2f40 Mon Sep 17 00:00:00 2001 From: Sebastien Beau Date: Tue, 11 Mar 2014 00:55:19 +0100 Subject: [PATCH] [REF] V7 clean up --- account_check_deposit/__openerp__.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/account_check_deposit/__openerp__.py b/account_check_deposit/__openerp__.py index 86e554bb7..230c2e0b0 100644 --- a/account_check_deposit/__openerp__.py +++ b/account_check_deposit/__openerp__.py @@ -20,8 +20,6 @@ # # ############################################################################### - - { 'name': 'account_check_deposit', 'version': '0.1', @@ -30,20 +28,21 @@ 'description': """This module allows you to use check deposits. With a new model : account_check_deposit you can select all the checks payments and create a global deposit for the selected checks. - You may have to create an account for received checks and a journal for payment by checks.""", + You may have to create an account for "received checks" and a + journal for payment by checks.""", 'author': 'Akretion', 'website': 'http://www.akretion.com/', - 'depends': ['account_accountant', - 'report_webkit', - ], - 'init_xml': [], - 'update_xml': [ - 'account_deposit_view.xml', - 'account_deposit_sequence.xml', - 'account_type_data.xml', - 'security/ir.model.access.csv', + 'depends': [ + 'account_accountant', + 'report_webkit', + ], + 'data': [ + 'account_deposit_view.xml', + 'account_deposit_sequence.xml', + 'account_type_data.xml', + 'security/ir.model.access.csv', ], - 'demo_xml': [], 'installable': True, + 'application': True, 'active': False, }