trytonpsk-crm/crm.xml
wilson gomez 934499d35b minor fix
2021-07-20 14:50:32 -05:00

40 lines
1.4 KiB
XML

<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="res.group" id="group_crm">
<field name="name">CRM</field>
</record>
<record model="res.group" id="group_crm_admin">
<field name="name">CRM Administration</field>
</record>
<record model="res.user-res.group" id="user_admin_group_crm">
<field name="user" ref="res.user_admin"/>
<field name="group" ref="group_crm"/>
</record>
<record model="res.user-res.group" id="user_admin_group_crm_admin">
<field name="user" ref="res.user_admin"/>
<field name="group" ref="group_crm_admin"/>
</record>
<record model="ir.ui.icon" id="crm_icon">
<field name="name">tryton-crm</field>
<field name="path">icons/tryton-crm.svg</field>
</record>
<menuitem name="CRM" sequence="130" id="menu_crm"
icon="tryton-crm" />
<record model="ir.ui.menu-res.group" id="menu_crm_group_crm">
<field name="menu" ref="menu_crm"/>
<field name="group" ref="group_crm"/>
</record>
<menuitem name="Reports" parent="menu_crm"
id="menu_reports" sequence="100" active="100"/>
</data>
</tryton>