[FIX] payment: remove mail of dependance (as account already depends on it) and set auto_install

payment was added as dependance of portal_sale, which used to be auto installed when portal and sale were installed. With this new dependance, it wasnt the case anymore
With auto install of the payment module with the installation of account, this module is installed on the installation of sale (depends on account), and, therefore, on the installation of portal, portal_sale is now installed correctly

bzr revid: dle@openerp.com-20140410084846-78kxwc63nmv0rg9k
This commit is contained in:
Denis Ledoux 2014-04-10 10:48:46 +02:00
parent 9e1dc2a2bd
commit 3f33b1e716
1 changed files with 2 additions and 1 deletions

View File

@ -7,11 +7,12 @@
'version': '1.0',
'description': """Payment Acquirer Base Module""",
'author': 'OpenERP SA',
'depends': ['mail', 'account'],
'depends': ['account'],
'data': [
'views/payment_acquirer.xml',
'views/res_config_view.xml',
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': True,
}