[ADD] Hotel Room Type Class basic structure: model, views and relations

This commit is contained in:
Dario Lodeiros
2018-10-25 13:40:11 +02:00
parent 2f7af67723
commit 8d8defe92d
6 changed files with 88 additions and 1 deletions

View File

@@ -22,6 +22,7 @@
<field name="list_price" widget='monetary' options="{'currency_field': 'currency_id', 'field_digits': True}"/>
</group>
<group>
<field name="class_id" />
<field name="total_rooms_count"/>
</group>
</group>

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Form view of hotel room type class-->
<record model="ir.ui.view" id="view_hotel_room_type_class_form">
<field name="name">hotel.room.type.class.form</field>
<field name="model">hotel.room.type.class</field>
<field name="arch" type="xml">
<form string="Hotel Room Type">
<sheet>
<div class="oe_button_box" name="button_box">
<button name="toggle_active" type="object"
class="oe_stat_button" icon="fa-archive">
<field name="active" widget="boolean_button"
options='{"terminology": "archive"}'/>
</button>
</div>
<group colspan="4">
<group>
<field name="name" />
<field name="code_class" />
</group>
</group>
<group colspan="2">
<group>
<field name="room_type_ids" widget="many2many"/>
</group>
</group>
</sheet>
</form>
</field>
</record>
<!-- Tree view of hotel room type class -->
<record model="ir.ui.view" id="view_hotel_room_type_class_tree">
<field name="name">hotel.room.type.class.tree</field>
<field name="model">hotel.room.type.class</field>
<field name="arch" type="xml">
<tree string=" Hotel Room Type Class">
<field name="sequence" widget="handle"/>
<field name="name" />
<field name="code_class"/>
<field name="room_type_ids"/>
</tree>
</field>
</record>
<!-- Action for hotel room type class -->
<record model="ir.actions.act_window" id="open_hotel_room_type_class_form_tree">
<field name="name">Room Type Class</field>
<field name="res_model">hotel.room.type.class</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem name="Type Class" id="menu_open_hotel_room_type_class_form_tree"
action="open_hotel_room_type_class_form_tree" sequence="15"
parent="hotel.menu_hotel_room" />
</odoo>