File: ir.xml

package info (click to toggle)
tryton-modules-dashboard 2.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 228 kB
  • sloc: python: 326; xml: 120; makefile: 7
file content (32 lines) | stat: -rw-r--r-- 1,132 bytes parent folder | download
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
<?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="arch" type="xml">
                <![CDATA[
                <board string="Dashboard">
                </board>
                ]]>
            </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"/>

    </data>
</tryton>