trytonpsk-hotel/view/booking_folio_form.xml

71 lines
2.5 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. -->
2021-10-06 02:27:25 +02:00
<form col="6">
2020-04-16 14:45:13 +02:00
<label name="product"/>
<field name="product" widget="selection"/>
<label name="main_guest"/>
<field name="main_guest"/>
2021-10-14 06:41:15 +02:00
<label name="registration_card"/>
<field name="registration_card"/>
2021-10-06 02:27:25 +02:00
<label name="room"/>
<field name="room" widget="selection"/>
2020-04-16 14:45:13 +02:00
<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"/>
2022-03-22 20:34:18 +01:00
<label name="unit_price_w_tax"/>
<field name="unit_price_w_tax"/>
2022-03-20 14:46:25 +01:00
<label name="room_amount"/>
<field name="room_amount"/>
2022-03-23 00:37:09 +01:00
<label name="reference"/>
<field name="reference"/>
2022-05-17 17:14:08 +02:00
<label name="estimated_arrival_time"/>
<field name="estimated_arrival_time"/>
2022-07-13 23:55:07 +02:00
<label name="vehicle_plate"/>
<field name="vehicle_plate"/>
2021-10-06 02:27:25 +02:00
<notebook colspan="6">
2022-05-18 21:17:40 +02:00
<page string="Charges and Guests" id="hotel_charges">
<field name="charges" colspan="4"/>
2021-10-06 02:27:25 +02:00
<field name="guests" colspan="4"/>
</page>
2022-08-04 05:36:12 +02:00
<page string="Taxes" id="folio_taxes">
<field name="taxes" colspan="4"/>
</page>
2022-07-11 02:56:01 +02:00
<page string="Stock" id="folio_stock">
<label name="storage"/>
<field name="storage"/>
<newline />
2022-07-13 22:57:41 +02:00
<!-- <field name="stock_moves" colspan="4"/> -->
2022-07-11 02:56:01 +02:00
</page>
2021-10-06 02:27:25 +02:00
<page string="Additional Info" id="folio_additional_info">
2022-03-19 06:21:49 +01:00
<label name="commission_amount"/>
<field name="commission_amount"/>
2021-10-06 02:27:25 +02:00
<separator name="notes" colspan="4"/>
<field name="notes" colspan="4"/>
</page>
</notebook>
2021-10-14 06:41:15 +02:00
<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"/>
2021-10-11 19:03:43 +02:00
</group>
2020-04-16 14:45:13 +02:00
</form>