27 lines
691 B
Python
27 lines
691 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "testserver_o2b",
|
|
|
|
'summary': """
|
|
Set Odoo as a test env.""",
|
|
|
|
'description': """
|
|
This module is to be installed when the Odoo env. server is to be used as test env.
|
|
Disables: email, cron jobs, account sync and removes Enterprise Sub code.
|
|
Adds a web ribbon to identify web frontendas test
|
|
""",
|
|
|
|
'author': "Open2bizz BV",
|
|
'website': "http://www.open2bizz.nl",
|
|
'category': 'Tools',
|
|
'version': "16.0.1.2.0",
|
|
'depends': ['web_environment_ribbon', 'mail','base',],
|
|
'data': [
|
|
'views/views.xml',
|
|
'views/templates.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
}
|