trytonpsk-hotel/view/room_housekeeping_form.xml

34 lines
1.2 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>
2022-07-27 23:34:13 +02:00
<label name="name"/>
<field name="name"/>
<label name="housekeeping"/>
<field name="housekeeping" widget="selection"/>
2020-04-16 14:45:13 +02:00
<label name="cleaning_type"/>
<field name="cleaning_type" widget="selection"/>
2022-07-27 23:34:13 +02:00
<label name="state"/>
<field name="state"/>
2020-04-16 14:45:13 +02:00
<notebook colspan="4">
<page string="Tasks" id="tasks">
2022-07-27 23:34:13 +02:00
<!-- <field name="tasks" colspan="2"/> -->
2022-05-17 17:38:21 +02:00
<field name="amenities" colspan="2"/>
2020-04-16 14:45:13 +02:00
</page>
<page string="Info Addtional" id="comments">
2022-05-17 17:38:21 +02:00
<separator string="Notes" colspan="4" id="notes"/>
2020-04-16 14:45:13 +02:00
<field name="notes" colspan="4"/>
2022-05-17 17:14:08 +02:00
</page>
2020-04-16 14:45:13 +02:00
</notebook>
<group col="5" colspan="4" id="buttons">
<button name="clean" string="Clean"
icon="tryton-forward"/>
<button name="dirty" string="Dirty"
icon="tryton-forward"/>
<button name="inspected" string="Inspected"
icon="tryton-forward"/>
<button name="maintenance" string="Maintenance"
icon="tryton-cancel"/>
</group>
</form>