mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
* [FIX] Export pricelist * [IMP] Import Reservations * [IMP] Better exception handle * [IMP] Notifiactions * [FIX] Issues [IMP] Notifications * [FIX] Cron Jobs
31 lines
1.1 KiB
XML
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>
|