[IMP] Open the right page after installing an app

bzr revid: fp@tinyerp.com-20130827151303-3z6r15vikxza7x11
This commit is contained in:
Fabien Pinckaers 2013-08-27 17:13:03 +02:00
parent 717e6ad280
commit cc2d285b84
11 changed files with 92 additions and 2 deletions

View File

@ -69,5 +69,10 @@
<field name="action" ref="action_website"/>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_website"/>
<field name="state">open</field>
</record>
</data>
</openerp>

View File

@ -11,6 +11,7 @@ OpenERP Contact Form
'author': 'OpenERP SA',
'depends': ['website', 'crm'],
'data': [
'website_crm_data.xml',
'views/website_crm.xml',
],
'installable': True,

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="action_open_website" model="ir.actions.act_url">
<field name="name">Website Contact Form</field>
<field name="target">self</field>
<field name="url">/page/website.contactus</field>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>
</data>
</openerp>

View File

@ -11,6 +11,7 @@ OpenERP Blog
'author': 'OpenERP SA',
'depends': ['website', 'event_sale', 'website_sale'],
'data': [
'event_data.xml',
'views/website_event.xml',
'security/ir.model.access.csv',
'security/website_event.xml',

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="action_open_website" model="ir.actions.act_url">
<field name="name">Website Home</field>
<field name="target">self</field>
<field name="url">/event</field>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>
</data>
</openerp>

View File

@ -4,13 +4,14 @@
'summary': 'Present Your Team',
'version': '1.0',
'description': """
OpenERP Blog
============
Our Team Page
=============
""",
'author': 'OpenERP SA',
'depends': ['website', 'hr'],
'data': [
'website_hr_data.xml',
'views/website_hr.xml',
'security/ir.model.access.csv',
'security/website_hr.xml',

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="action_open_website" model="ir.actions.act_url">
<field name="name">Website About</field>
<field name="target">self</field>
<field name="url">/page/website.aboutus</field>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>
</data>
</openerp>

View File

@ -11,6 +11,7 @@ OpenERP Blog
'author': 'OpenERP SA',
'depends': ['website', 'mail'],
'data': [
'website_mail_data.xml',
'views/website_mail.xml',
'views/res_config.xml',
'security/website_mail.xml',

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="action_open_website" model="ir.actions.act_url">
<field name="name">Website Blogs</field>
<field name="target">self</field>
<field name="url">/blog</field>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>
</data>
</openerp>

View File

@ -11,6 +11,7 @@ OpenERP E-Commerce
'author': 'OpenERP SA',
'depends': ['website', 'sale', 'point_of_sale'],
'data': [
'website_sale_data.xml',
'views/website_sale.xml',
'security/ir.model.access.csv',
'security/website_sale.xml',

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="action_open_website" model="ir.actions.act_url">
<field name="name">Website Shop</field>
<field name="target">self</field>
<field name="url">/shop</field>
</record>
<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>
</data>
</openerp>