trytonpsk-hotel/city.xml

61 lines
2.9 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>
<record model="ir.ui.view" id="hotel_migration_city_view_tree">
<field name="model">hotel.migration_city</field>
<field name="type">tree</field>
<field name="name">migration_city_tree</field>
</record>
<record model="ir.ui.view" id="hotel_migration_city_view_form">
<field name="model">hotel.migration_city</field>
<field name="type">form</field>
<field name="name">migration_city_form</field>
</record>
<record model="ir.action.act_window" id="act_migration_city_form">
<field name="name">Migration City</field>
<field name="res_model">hotel.migration_city</field>
</record>
<record model="ir.action.act_window.view" id="act_migration_city_form_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="hotel_migration_city_view_tree"/>
<field name="act_window" ref="act_migration_city_form"/>
</record>
<record model="ir.action.act_window.view" id="act_migration_city_form_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="hotel_migration_city_view_form"/>
<field name="act_window" ref="act_migration_city_form"/>
</record>
<menuitem name="Migration City" parent="hotel.menu_configuration" sequence="60"
action="act_migration_city_form" id="menu_hotel_migration_city"/>
<!-- Model Access -->
<record model="ir.model.access" id="access_migration_city">
<field name="model" search="[('model', '=', 'hotel.migration_city')]"/>
<field name="perm_read" eval="False"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.model.access" id="access_migration_city_group_hotel">
<field name="model" search="[('model', '=', 'hotel.migration_city')]"/>
<field name="group" ref="group_hotel"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.model.access" id="access_migration_city_group_hotel_admin">
<field name="model" search="[('model', '=', 'hotel.migration_city')]"/>
<field name="group" ref="group_hotel_admin"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_delete" eval="False"/>
</record>
</data>
</tryton>