Files
pms/hotel/wizard/massive_price_reservation_days.xml
Dario Lodeiros a9a4e59882 First Commit
2018-07-26 13:06:48 +02:00

33 lines
1.1 KiB
XML

<?xml version="1.0" ?>
<odoo>
<record model="ir.ui.view" id="view_hotel_massive_price_change_wizard">
<field name="name">hotel.wizard.massive.price.reservation.days</field>
<field name="model">hotel.wizard.massive.price.reservation.days</field>
<field name="arch" type="xml">
<form string="Massive Price Change" >
<group>
<field name="new_price" required="1" />
</group>
<footer>
<button name="massive_price_change_days" string="Massive Change" type="object"
class="oe_highlight" />
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
<record id="action_hotel_massive_price_change_reservation_days" model="ir.actions.act_window">
<field name="name">Massive Price Change</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">hotel.wizard.massive.price.reservation.days</field>
<field name="view_id" ref="view_hotel_massive_price_change_wizard"/>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
</odoo>