trytonpsk-staff_document/kind_document.xml
Camilo Sarmiento 5105abfdf8 migrato to git
2020-04-15 17:34:57 -05:00

38 lines
1.7 KiB
XML

<?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>
<!-- Views Definitions -->
<record model="ir.ui.view" id="kind_document_view_form">
<field name="model">staff.kind_document</field>
<field name="type">form</field>
<field name="name">kind_document_form</field>
</record>
<record model="ir.ui.view" id="kind_document_view_tree">
<field name="model">staff.kind_document</field>
<field name="type">tree</field>
<field name="name">kind_document_tree</field>
</record>
<!-- Action Definitions -->
<record model="ir.action.act_window" id="act_kind_document_tree">
<field name="name">Kind Document</field>
<field name="res_model">staff.kind_document</field>
</record>
<record model="ir.action.act_window.view" id="act_kind_document_tree_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="kind_document_view_tree"/>
<field name="act_window" ref="act_kind_document_tree"/>
</record>
<record model="ir.action.act_window.view" id="act_kind_document_tree_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="kind_document_view_form"/>
<field name="act_window" ref="act_kind_document_tree"/>
</record>
<menuitem name="Documents" parent="staff.menu_configuration"
sequence="4" id="menu_kind" action="act_kind_document_tree"/>
</data>
</tryton>