trytonpsk-crm/view/activity_form.xml

44 lines
1.5 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>
<label name="subject"/>
<field name="subject"/>
<label name="opportunity"/>
<field name="opportunity" widget="selection"/>
<label name="customer"/>
<field name="customer"/>
<label name="type_"/>
<field name="type_"/>
<label name="type_info"/>
<field name="type_info"/>
<group col="6" colspan="4" id="dates">
<label name="planned_date"/>
<field name="planned_date"/>
<label name="planned_time"/>
<field name="planned_time"/>
<label name="effective_date"/>
<field name="effective_date"/>
</group>
<label name="agent"/>
<field name="agent"/>
<label name="duration"/>
<field name="duration"/>
<separator name="description" colspan="4"/>
<field name="description" colspan="4"/>
<group col="4" colspan="4" id="state_buttons">
<label name="state"/>
<field name="state"/>
<group col="4" colspan="2" id="buttons">
<button name="cancel" string="Cancel"
icon="tryton-cancel"/>
<button name="draft" string="Draft"
icon="tryton-clear"/>
<button name="planned" string="Planned"
icon="tryton-ok"/>
<button name="done" string="Done"
icon="tryton-ok"/>
</group>
</group>
</form>