trytonpsk-hotel/view/booking_form.xml

112 lines
4.2 KiB
XML
Raw Normal View History

2020-04-16 14:45:13 +02:00
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form col="6">
<label name="party"/>
2021-11-25 04:52:03 +01:00
<field name="party" colspan="2"/>
<button name="create_guest" string="Create Guest"
2021-11-25 04:52:03 +01:00
icon="tryton-open"/>
2020-04-16 14:45:13 +02:00
<label name="number"/>
<field name="number"/>
<label name="contact"/>
<field name="contact" colspan="3"/>
<label name="booking_date"/>
<field name="booking_date"/>
2021-09-13 14:13:11 +02:00
<label name="plan"/>
<field name="plan"/>
2021-11-24 22:49:39 +01:00
<label name="media"/>
<field name="media"/>
2022-03-20 01:11:41 +01:00
<label name="reason"/>
<field name="reason"/>
2022-03-19 17:40:54 +01:00
<label name="channel"/>
<field name="channel" widget="selection"/>
2021-11-24 22:49:39 +01:00
<label name="ota_booking_code"/>
<field name="ota_booking_code"/>
2022-03-23 00:37:09 +01:00
<label name="price_list"/>
<field name="price_list" widget="selection"/>
2021-11-17 23:03:53 +01:00
<button name="select_rooms" string="Select Rooms"
2021-11-25 04:52:03 +01:00
icon="tryton-open" colspan="4"/>
<button name="do_pay" string="Do Pay" icon="tryton-open"/>
<button name="send_email" string="Send Email" icon="tryton-open"/>
2020-04-16 14:45:13 +02:00
<notebook colspan="6">
<page string="Lines" id="lines">
<field name="lines" colspan="4"
2021-09-21 06:33:06 +02:00
view_ids="hotel.booking_folio_view_tree"/>
2020-04-16 14:45:13 +02:00
</page>
2021-11-25 04:52:03 +01:00
<page string="Advances Payments" id="vouchers">
<field name="vouchers" colspan="4"/>
</page>
2020-04-16 14:45:13 +02:00
<page string="Additional Info" id="additional_info">
2021-11-24 22:49:39 +01:00
<label name="payment_term"/>
<field name="payment_term" widget="selection"/>
2021-11-24 17:39:13 +01:00
<label name="guarantee"/>
<field name="guarantee"/>
<label name="company"/>
<field name="company"/>
<label name="currency"/>
<field name="currency"/>
<label name="person_num"/>
<field name="person_num"/>
2020-07-18 17:18:29 +02:00
<label name="complementary"/>
<field name="complementary"/>
<label name="type_complementary"/>
<field name="type_complementary"/>
2021-09-16 19:47:03 +02:00
<label name="cancellation_policy"/>
<field name="cancellation_policy" widget="selection"/>
2020-04-16 14:45:13 +02:00
<label name="vehicles_num"/>
<field name="vehicles_num"/>
<label name="vehicle_plate"/>
<field name="vehicle_plate"/>
<label name="vip"/>
<field name="vip"/>
<label name="group"/>
<field name="group"/>
<newline/>
<separator name="comments" colspan="4"/>
<field name="comments" colspan="4"/>
</page>
<page string="Channel Manager" id="channel_manager">
<label name="booker"/>
<field name="booker"/>
<label name="code"/>
<field name="code"/>
<label name="created_channel"/>
<field name="created_channel"/>
2022-03-19 06:21:49 +01:00
<label name="channel_commission"/>
<field name="channel_commission"/>
2020-04-16 14:45:13 +02:00
</page>
</notebook>
2022-03-20 14:46:25 +01:00
<group col="5" colspan="4" id="buttons">
2021-10-09 19:49:43 +02:00
<label name="taxes_exception"/>
<field name="taxes_exception"/>
2021-10-09 19:00:26 +02:00
<label name="state"/>
<field name="state"/>
2022-03-20 14:46:25 +01:00
<button name="bill" string="Bill"/>
2021-10-09 19:49:43 +02:00
<button name="cancel" string="Cancel" icon="tryton-cancel"/>
<button name="not_show" string="Not Show" icon="tryton-cancel"/>
<button name="offer" string="Offer" icon="tryton-clear"/>
<button name="confirm" string="Confirm" icon="tryton-forward"/>
2021-02-02 18:39:37 +01:00
</group>
2021-11-24 22:49:39 +01:00
<group col="2" colspan="1" xfill="1" id="amounts">
2021-02-02 18:39:37 +01:00
<label name="untaxed_amount"/>
<field name="untaxed_amount"/>
<label name="tax_amount"/>
<field name="tax_amount"/>
<label name="total_amount"/>
<field name="total_amount"/>
2021-11-24 22:49:39 +01:00
</group>
2022-03-20 14:46:25 +01:00
<group col="2" colspan="1" xfill="1" id="advances">
2021-10-09 19:49:43 +02:00
<label name="total_advance"/>
<field name="total_advance"/>
2021-07-31 00:44:32 +02:00
<label name="pending_to_pay"/>
<field name="pending_to_pay"/>
2020-04-16 14:45:13 +02:00
</group>
2022-03-20 14:46:25 +01:00
<group col="5" colspan="4" xfill="1" id="ota_management">
2022-03-20 01:11:41 +01:00
<label name="channel_paymode"/>
<field name="channel_paymode"/>
2022-03-20 14:46:25 +01:00
<button name="bill_to_channel" string="Bill to Channel"/>
2022-03-20 01:11:41 +01:00
<label name="channel_invoice"/>
<field name="channel_invoice"/>
</group>
2020-04-16 14:45:13 +02:00
</form>