trytonpsk-crm/crm.xml

40 lines
1.4 KiB
XML
Raw Normal View History

2020-04-16 15:28:50 +02:00
<?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>
2021-07-20 19:30:12 +02:00
<menuitem name="CRM" sequence="130" id="menu_crm"
2020-04-16 15:28:50 +02:00
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>