-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcooperative.xml
42 lines (36 loc) · 1.69 KB
/
cooperative.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0"?>
<tryton>
<data>
<record model="res.group" id="group_cooperative_ar">
<field name="name">Cooperatives</field>
</record>
<record model="res.user-res.group" id="user_admin_group_cooperative_ar">
<field name="user" ref="res.user_admin"/>
<field name="group" ref="group_cooperative_ar"/>
</record>
<record model="res.group" id="group_cooperative_ar_admin">
<field name="name">Cooperatives Administrator</field>
</record>
<record model="res.user-res.group" id="user_admin_group_cooperative_ar_admin">
<field name="user" ref="res.user_admin"/>
<field name="group" ref="group_cooperative_ar_admin"/>
</record>
<record model="ir.ui.icon" id="cooperative_icon">
<field name="name">tryton-cooperative</field>
<field name="path">icons/tryton-cooperative.svg</field>
</record>
<menuitem icon="tryton-cooperative" id="menu_cooperative_ar"
name="Cooperatives" sequence="5"/>
<record model="ir.ui.menu-res.group" id="menu_cooperative_ar_group_cooperative_ar">
<field name="menu" ref="menu_cooperative_ar"/>
<field name="group" ref="group_cooperative_ar"/>
</record>
<menuitem name="Configuration" parent="menu_cooperative_ar"
id="menu_configuration" sequence="0" icon="tryton-settings"/>
<record model="ir.ui.menu-res.group"
id="menu_configuration_group_cooperative_ar_admin">
<field name="menu" ref="menu_configuration"/>
<field name="group" ref="group_cooperative_ar_admin"/>
</record>
</data>
</tryton>