trytonpsk-hotel/view/booking_form.xml

104 lines
3.9 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"/>
2021-09-13 14:13:11 +02:00
<label name="plan"/>
<field name="plan"/>
2021-11-17 23:03:53 +01:00
<label name="party_seller"/>
<field name="party_seller" widget="selection"/>
<label name="price_list"/>
<field name="price_list" widget="selection"/>
<button name="select_rooms" string="Select Rooms"
icon="tryton-open" colspan="2"/>
2021-11-16 15:31:28 +01:00
<button name="do_pay" string="Do Pay" 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">
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"/>
</page>
<page string="Marketing" id="marketing">
<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-10-09 19:49:43 +02:00
<group col="4" colspan="4" id="buttons">
<label name="payment_term"/>
<field name="payment_term" widget="selection"/>
<label name="media"/>
<field name="media"/>
<label name="taxes_exception"/>
<field name="taxes_exception"/>
2021-10-09 19:00:26 +02:00
<label name="state"/>
<field name="state"/>
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-10-16 05:54:52 +02:00
<button name="bill" string="Bill"/>
2021-02-02 18:39:37 +01:00
</group>
2021-10-12 17:25:14 +02:00
<group col="2" colspan="2" 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-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>
</form>