mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Form view of hotel room -->
|
|
<record model="ir.ui.view" id="hotel_room_pricelist_cached_view_form">
|
|
<field name="name">hotel.room.pricelist.cached.form</field>
|
|
<field name="model">room.pricelist.cached</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Room Pricelist Cached">
|
|
<sheet>
|
|
<group>
|
|
<field name="room_id" />
|
|
<field name="date" />
|
|
<field name="price" />
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Tree view of hotel room -->
|
|
<record model="ir.ui.view" id="hotel_room_pricelist_cached_view_tree">
|
|
<field name="name">hotel.room.pricelist.cached.tree</field>
|
|
<field name="model">room.pricelist.cached</field>
|
|
<field name="arch" type="xml">
|
|
<tree string="Room Pricelist Cached">
|
|
<field name="room_id" />
|
|
<field name="date" />
|
|
<field name="price" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|