Files
pms/hotel_channel_connector/views/channel_hotel_reservation_views.xml
QS5ELkMu 77cddb44f1 Finalize Hotel Channel Connector (#64)
* [FIX] Export pricelist

* [IMP] Import Reservations

* [IMP] Better exception handle

* [IMP] Notifiactions

* [FIX] Issues [IMP] Notifications

* [FIX] Cron Jobs
2018-11-14 23:32:58 +01:00

31 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="channel_hotel_reservation_view_form" model="ir.ui.view">
<field name="name">channel.hotel.reservation.form</field>
<field name="model">channel.hotel.reservation</field>
<field name="arch" type="xml">
<form string="Hotel Channel Reservation">
<group>
<field name="external_id" />
<field name="ota_reservation_id" />
<field name="channel_status" />
<field name="channel_status_reason" />
<field name="to_read" />
</group>
</form>
</field>
</record>
<record id="view_channel_hotel_reservation_tree" model="ir.ui.view">
<field name="name">channel.hotel.reservation.tree</field>
<field name="model">channel.hotel.reservation</field>
<field name="arch" type="xml">
<tree string="Hotel Channel Reservation">
<field name="backend_id"/>
</tree>
</field>
</record>
</odoo>