-
Notifications
You must be signed in to change notification settings - Fork 1
/
hello_view.xml
60 lines (55 loc) · 2.17 KB
/
hello_view.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- hello form view -->
<record model="ir.ui.view" id="hello_form_view">
<field name="name">ho.hello.form</field>
<field name="model">ho.hello</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Hello">
<field name="text"/>
</form>
</field>
</record>
<!-- end hello form view -->
<!-- hello list view -->
<record id="hello_list_view" model="ir.ui.view">
<field name="name">ho.hello.list.view</field>
<field name="model">ho.hello</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree>
<field name="text"/>
</tree>
</field>
</record>
<!-- hello list view -->
<!-- Action craete hello -->
<record id="hello_action_create" model="ir.actions.act_window">
<field name="name">Register a new hello</field>
<field name="res_model">ho.hello</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
</record>
<record id="hello_action_list" model="ir.actions.act_window">
<field name="name">List all hellos</field>
<field name="res_model">ho.hello</field>
<field name="view_type">tree</field>
<field name="view_mode">tree</field>
</record>
<!--
The menu has the following Hierarchy :
Hello OpenERP
`-
Hello
`- Register a new hello
-->
<menuitem id="menu_hello_root" name="Hello OpenERP" sequence="20"
web_icon="images/hello.png"
web_icon_hover="images/hello-hover.png"/>
<menuitem id="hello_menu" name="hello" parent="menu_hello_root"/>
<menuitem id="hello_menu_create" action="hello_action_create" parent="hello_menu"/>
<menuitem id="hello_menu_list" action="hello_action_list" parent="hello_menu"/>
</data>
</openerp>