[FIX] payment: remove mail of dependance (as account already depends on it) and set...
authorDenis Ledoux <dle@openerp.com>
Thu, 10 Apr 2014 08:48:46 +0000 (10:48 +0200)
committerDenis Ledoux <dle@openerp.com>
Thu, 10 Apr 2014 08:48:46 +0000 (10:48 +0200)
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

addons/payment/__openerp__.py

index bc5d389..c192bec 100644 (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,
 }