odoo/addons/portal_calendar/portal_calender_view.xml

22 lines
801 B
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!--
Override the original action to set another help field and/or
another context field, more suited for portal members
-->
<record model="ir.actions.act_window" id="action_portal_meeting_view">
<field name="name">Meetings</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">crm.meeting</field>
<field name="view_mode">calendar,tree,form</field>
<field name="help">There are no public meeting.</field>
</record>
<menuitem name="Calendar" id="portal_company_meeting" parent="portal.portal_company"
action="action_portal_meeting_view" sequence="30"/>
</data>
</openerp>