40 lines
1.5 KiB
XML
Executable File
40 lines
1.5 KiB
XML
Executable File
<?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="note_view_form">
|
|
<field name="model">ir.note</field>
|
|
<field name="type">form</field>
|
|
<field name="name">note_form</field>
|
|
</record>
|
|
<record model="ir.ui.view" id="note_view_list">
|
|
<field name="model">ir.note</field>
|
|
<field name="type">tree</field>
|
|
<field name="name">note_list</field>
|
|
</record>
|
|
<record model="ir.action.act_window" id="act_note_form">
|
|
<field name="name">Notes</field>
|
|
<field name="type">ir.action.act_window</field>
|
|
<field name="res_model">ir.note</field>
|
|
</record>
|
|
<record model="ir.action.act_window.view"
|
|
id="act_note_form_view1">
|
|
<field name="sequence" eval="1"/>
|
|
<field name="view" ref="note_view_list"/>
|
|
<field name="act_window" ref="act_note_form"/>
|
|
</record>
|
|
<record model="ir.action.act_window.view"
|
|
id="act_note_form_view2">
|
|
<field name="sequence" eval="2"/>
|
|
<field name="view" ref="note_view_form"/>
|
|
<field name="act_window" ref="act_note_form"/>
|
|
</record>
|
|
<menuitem
|
|
parent="ir.menu_models"
|
|
action="act_note_form"
|
|
sequence="50"
|
|
id="menu_note_form"/>
|
|
</data>
|
|
</tryton>
|