trytonpsk-hotel/view/board_folio_form.xml

78 lines
2.7 KiB
XML
Raw Normal View History

2021-10-06 05:37:33 +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="product"/>
<field name="product" widget="selection"/>
2021-10-08 22:43:48 +02:00
<label name="booking"/>
<field name="booking"/>
<label name="registration_card"/>
<field name="registration_card"/>
2021-10-06 05:37:33 +02:00
<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"/>
2021-10-08 22:43:48 +02:00
<label name="main_guest"/>
<field name="main_guest"/>
2021-10-06 05:37:33 +02:00
<label name="nights_quantity"/>
<field name="nights_quantity"/>
<label name="unit_price"/>
<field name="unit_price"/>
<label name="party"/>
<field name="party"/>
2021-10-08 22:43:48 +02:00
<label name="host_quantity"/>
<field name="host_quantity"/>
2021-10-11 19:03:43 +02:00
<label name="breakfast_included"/>
<field name="breakfast_included"/>
2022-03-22 20:34:18 +01:00
<label name="unit_price_w_tax"/>
<field name="unit_price_w_tax"/>
2022-03-23 00:37:09 +01:00
<label name="reference"/>
<field name="reference"/>
2021-10-06 05:37:33 +02:00
<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>
2021-10-11 01:52:01 +02:00
<page string="Stock" id="stock">
<field name="stock_moves" colspan="4"/>
</page>
2021-10-06 05:37:33 +02:00
<page string="Additional Info" id="folio_additional_info">
<label name="nationality"/>
<field name="nationality"/>
<label name="origin_country"/>
<field name="origin_country"/>
<label name="target_country"/>
<field name="target_country"/>
2022-03-19 15:46:34 +01:00
<label name="commission_amount"/>
<field name="commission_amount"/>
2021-10-08 22:43:48 +02:00
<label name="invoice_line"/>
<field name="invoice_line"/>
2021-10-06 05:37:33 +02:00
<separator name="notes" colspan="4"/>
<field name="notes" colspan="4"/>
</page>
</notebook>
2022-03-19 15:46:34 +01:00
<group col="8" colspan="6" id="state_buttons">
2021-10-08 22:43:48 +02:00
<label name="registration_state"/>
<field name="registration_state"/>
2021-10-12 17:25:14 +02:00
<label name="total_amount"/>
<field name="total_amount"/>
2022-03-19 15:46:34 +01:00
<label name="total_balance"/>
<field name="total_balance"/>
2021-10-14 06:41:15 +02:00
<label name="to_invoice"/>
<field name="to_invoice"/>
2021-10-08 22:43:48 +02:00
<button name="check_in" string="Check In"/>
<button name="check_out" string="Check Out"/>
<button name="bill" string="Bill"/>
2021-10-12 17:25:14 +02:00
<button name="pay" string="Pay"/>
2021-10-14 06:41:15 +02:00
<newline />
2021-10-12 17:25:14 +02:00
<label name="invoice"/>
<field name="invoice"/>
<label name="invoice_state"/>
<field name="invoice_state"/>
2021-10-08 22:43:48 +02:00
</group>
2021-10-06 05:37:33 +02:00
</form>