trytonpsk-hotel/view/booking_folio_form.xml

66 lines
2.3 KiB
XML

<?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="product"/>
<field name="product" widget="selection"/>
<label name="main_guest"/>
<field name="main_guest"/>
<label name="registration_card"/>
<field name="registration_card"/>
<label name="room"/>
<field name="room" widget="selection"/>
<label name="arrival_date"/>
<field name="arrival_date" widget="date"/>
<label name="departure_date"/>
<field name="departure_date" widget="date"/>
<label name="nights_quantity"/>
<field name="nights_quantity"/>
<label name="unit_price"/>
<field name="unit_price"/>
<label name="host_quantity"/>
<field name="host_quantity"/>
<label name="nationality"/>
<field name="nationality"/>
<label name="origin_country"/>
<field name="origin_country"/>
<label name="target_country"/>
<field name="target_country"/>
<label name="unit_price_w_tax"/>
<field name="unit_price_w_tax"/>
<label name="room_amount"/>
<field name="room_amount"/>
<label name="reference"/>
<field name="reference"/>
<notebook colspan="6">
<page string="Charges" id="hotel_charges">
<field name="charges" colspan="4"/>
</page>
<page string="Guests" id="hotel_guests">
<field name="guests" colspan="4"/>
</page>
<page string="Additional Info" id="folio_additional_info">
<label name="commission_amount"/>
<field name="commission_amount"/>
<separator name="notes" colspan="4"/>
<field name="notes" colspan="4"/>
</page>
</notebook>
<group col="8" colspan="6" id="state_buttons">
<label name="registration_state"/>
<field name="registration_state"/>
<label name="total_amount"/>
<field name="total_amount"/>
<label name="to_invoice"/>
<field name="to_invoice"/>
<button name="check_in" string="Check In"/>
<button name="check_out" string="Check Out"/>
<button name="bill" string="Bill"/>
<button name="pay" string="Pay"/>
<label name="invoice"/>
<field name="invoice"/>
<label name="invoice_state"/>
<field name="invoice_state"/>
</group>
</form>