File: ir.xml

package info (click to toggle)
tryton-modules-dashboard 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 320 kB
  • ctags: 64
  • sloc: python: 309; xml: 95; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 1,030 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
<?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="ir.ui.view" id="view_dashboard">
            <field name="model"></field>
            <field name="type">board</field>
            <field name="name">dashboard</field>
        </record>
        <record model="ir.action.act_window" id="act_dashboard">
            <field name="name">Dashboard</field>
            <field name="res_model"></field>
            <field name="type">ir.action.act_window</field>
        </record>
        <record model="ir.action.act_window.view" id="act_dashboard_view1">
            <field name="sequence" eval="1"/>
            <field name="view" ref="view_dashboard"/>
            <field name="act_window" ref="act_dashboard"/>
        </record>

        <menuitem id="menu_dashboard" action="act_dashboard"
            sequence="9" icon="tryton-presentation"/>

    </data>
</tryton>