trytonpsk-hotel/view/booking_form.xml

125 lines
4.7 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"/>
<field name="party"/>
<button name="create_guest" string="Create Guest"
icon="tryton-open" colspan="2"/>
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"/>
<label name="price_list"/>
2021-07-31 00:44:32 +02:00
<field name="price_list" widget="selection"/>
2020-04-16 14:45:13 +02:00
<label name="payment_term"/>
<field name="payment_term"/>
<label name="media"/>
<field name="media"/>
<label name="party_seller"/>
2021-07-31 00:44:32 +02:00
<field name="party_seller" widget="selection"/>
2020-04-16 14:45:13 +02:00
<label name="taxes_exception"/>
<field name="taxes_exception"/>
2021-09-13 14:13:11 +02:00
<label name="plan"/>
<field name="plan"/>
2021-09-16 19:47:03 +02:00
<label name="breakfast_included"/>
<field name="breakfast_included"/>
2021-09-13 14:13:11 +02:00
<button name="select_rooms" string="Select Rooms"
2021-09-16 19:47:03 +02:00
icon="tryton-open" colspan="2"/>
2021-02-02 18:39:37 +01:00
<button name="send_email" string="Send Email"
icon="tryton-open" colspan="2"/>
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>
<page string="Additional Info" id="additional_info">
2020-07-18 17:18:29 +02:00
<label name="complementary"/>
<field name="complementary"/>
<label name="type_complementary"/>
<field name="type_complementary"/>
2020-04-16 14:45:13 +02:00
<label name="currency"/>
<field name="currency"/>
<label name="company"/>
<field name="company"/>
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="person_num"/>
<field name="person_num"/>
<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"/>
</page>
<page string="Marketing" id="marketing">
<separator id="marketing_channel" string="Channel information" colspan="4"/>
<label name="guarantee"/>
<field name="guarantee"/>
<newline/>
<separator id="marketing_advertisement" string="Advertisement information" colspan="4"/>
<label name="source_contact"/>
<field name="source_contact"/>
2021-09-13 14:13:11 +02:00
<label name="segment"/>
<field name="segment"/>
2020-04-16 14:45:13 +02:00
</page>
<page string="Advances Payments" id="vouchers">
<field name="vouchers" colspan="4"/>
</page>
</notebook>
2021-07-31 00:44:32 +02:00
<group col="7" colspan="6" id="advances">
2020-04-16 14:45:13 +02:00
<button name="pay_advance" string="Add Advance" icon="tryton-open"
2021-02-02 18:39:37 +01:00
colspan="2"/>
<label name="total_advance"/>
<field name="total_advance"/>
2021-07-31 00:44:32 +02:00
<label name="registration_state"/>
<field name="registration_state"/>
<!-- <button name="check_in" string="Check In"
icon="tryton-forward"/>
<button name="check_out" string="Check Out"
icon="tryton-ok"/> -->
<button name="no_show" string="No Show" icon="tryton-cancel"/>
2021-02-02 18:39:37 +01:00
</group>
2021-07-31 00:44:32 +02:00
<group col="8" colspan="6" 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-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>
2020-06-28 04:35:07 +02:00
<group col="8" colspan="6" id="buttons">
2020-04-16 14:45:13 +02:00
<label name="state"/>
<field name="state"/>
2020-06-28 04:35:07 +02:00
<button name="offer" string="Offer"
2020-04-16 14:45:13 +02:00
icon="tryton-clear"/>
<button name="cancel" string="Cancel"
icon="tryton-cancel"/>
2020-06-28 04:35:07 +02:00
<button name="not_confirm" string="Not Confirm"
icon="tryton-forward"/>
2020-04-16 14:45:13 +02:00
<button name="confirm" string="Confirm"
icon="tryton-forward"/>
2020-06-28 04:35:07 +02:00
<!-- <label name="satisfaction"/>
<field name="satisfaction"/> -->
</group>
2020-04-16 14:45:13 +02:00
</form>