File: group.xml

package info (click to toggle)
tryton-server 7.0.43-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,760 kB
  • sloc: python: 53,744; xml: 5,194; sh: 803; sql: 217; makefile: 28
file content (58 lines) | stat: -rw-r--r-- 2,476 bytes parent folder | download | duplicates (2)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?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_admin">
            <field name="name">Administration</field>
        </record>
        <record model="ir.ui.view" id="group_view_form">
            <field name="model">res.group</field>
            <field name="type">form</field>
            <field name="name">group_form</field>
        </record>
        <record model="ir.ui.view" id="group_view_tree">
            <field name="model">res.group</field>
            <field name="type">tree</field>
            <field name="name">group_list</field>
        </record>
        <record model="ir.action.act_window" id="act_group_form">
            <field name="name">Groups</field>
            <field name="type">ir.action.act_window</field>
            <field name="res_model">res.group</field>
        </record>
        <record model="ir.action.act_window.view"
            id="act_group_form_view1">
            <field name="sequence" eval="1"/>
            <field name="view" ref="group_view_tree"/>
            <field name="act_window" ref="act_group_form"/>
        </record>
        <record model="ir.action.act_window.view"
            id="act_group_form_view2">
            <field name="sequence" eval="2"/>
            <field name="view" ref="group_view_form"/>
            <field name="act_window" ref="act_group_form"/>
        </record>
        <menuitem
            parent="res.menu_res"
            action="act_group_form"
            sequence="20"
            id="menu_group_form"/>

        <record model="ir.model.access" id="access_group">
            <field name="model" search="[('model', '=', 'res.group')]"/>
            <field name="perm_read" eval="True"/>
            <field name="perm_write" eval="False"/>
            <field name="perm_create" eval="False"/>
            <field name="perm_delete" eval="False"/>
        </record>
        <record model="ir.model.access" id="access_group_admin">
            <field name="model" search="[('model', '=', 'res.group')]"/>
            <field name="group" ref="group_admin"/>
            <field name="perm_read" eval="True"/>
            <field name="perm_write" eval="True"/>
            <field name="perm_create" eval="True"/>
            <field name="perm_delete" eval="True"/>
        </record>
    </data>
</tryton>