trytonpsk-crm/view/activity_form.xml

47 lines
1.5 KiB
XML
Raw Normal View History

2020-04-16 15:28:50 +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>
<label name="contact"/>
<field name="contact"/>
<label name="company"/>
<field name="company"/>
<label name="customer"/>
<field name="customer"/>
<label name="number"/>
<field name="number"/>
<label name="media"/>
<field name="media" widget="selection"/>
<label name="media_info"/>
<field name="media_info"/>
<label name="planned_date"/>
<field name="planned_date"/>
<label name="effective_date"/>
<field name="effective_date"/>
<newline/>
<label name="subject"/>
<field name="subject" colspan="3"/>
<separator name="notes" colspan="4"/>
<field name="notes" colspan="4"/>
<notebook colspan="4">
<page string="Sales" id="sales">
</page>
<page string="Deals" id="deals">
</page>
</notebook>
<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="pending" string="Pending"
icon="tryton-ok"/>
<button name="done" string="Done"
icon="tryton-ok"/>
</group>
</group>
</form>