first commit
This commit is contained in:
24
modules/inbound_email/view/inbound_email_form.xml
Normal file
24
modules/inbound_email/view/inbound_email_form.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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="2">
|
||||
<label name="inbox"/>
|
||||
<field name="inbox"/>
|
||||
|
||||
<label name="id"/>
|
||||
<field name="id"/>
|
||||
|
||||
<label name="data_type"/>
|
||||
<field name="data_type"/>
|
||||
|
||||
<label name="data"/>
|
||||
<field name="data"/>
|
||||
|
||||
<label name="rule"/>
|
||||
<field name="rule"/>
|
||||
|
||||
<label name="result"/>
|
||||
<field name="result"/>
|
||||
|
||||
<button name="process" colspan="2"/>
|
||||
</form>
|
||||
13
modules/inbound_email/view/inbound_email_inbox_form.xml
Normal file
13
modules/inbound_email/view/inbound_email_inbox_form.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?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="name"/>
|
||||
<field name="name" colspan="3"/>
|
||||
|
||||
<label name="endpoint"/>
|
||||
<field name="endpoint" colspan="2"/>
|
||||
<button name="new_identifier"/>
|
||||
|
||||
<field name="rules" colspan="4" view_ids="inbound_email.inbound_email_rule_view_list_sequence"/>
|
||||
</form>
|
||||
6
modules/inbound_email/view/inbound_email_inbox_list.xml
Normal file
6
modules/inbound_email/view/inbound_email_inbox_list.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?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. -->
|
||||
<tree>
|
||||
<field name="name" expand="2"/>
|
||||
</tree>
|
||||
10
modules/inbound_email/view/inbound_email_list.xml
Normal file
10
modules/inbound_email/view/inbound_email_list.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?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. -->
|
||||
<tree>
|
||||
<field name="inbox" expand="1"/>
|
||||
<field name="id" expand="2"/>
|
||||
<field name="rule" expand="1"/>
|
||||
<field name="result" expand="2"/>
|
||||
<button name="process" multiple="1"/>
|
||||
</tree>
|
||||
25
modules/inbound_email/view/inbound_email_rule_form.xml
Normal file
25
modules/inbound_email/view/inbound_email_rule_form.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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="inbox"/>
|
||||
<field name="inbox" colspan="3"/>
|
||||
|
||||
<label name="origin"/>
|
||||
<field name="origin"/>
|
||||
<label name="destination"/>
|
||||
<field name="destination"/>
|
||||
|
||||
<label name="subject"/>
|
||||
<field name="subject" colspan="3"/>
|
||||
|
||||
<label name="attachment_name"/>
|
||||
<field name="attachment_name" colspan="3"/>
|
||||
|
||||
<group name="headers" expandable="0" col="1" colspan="4">
|
||||
<field name="headers"/>
|
||||
</group>
|
||||
|
||||
<label name="action"/>
|
||||
<field name="action" colspan="3"/>
|
||||
</form>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?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="name"/>
|
||||
<field name="name"/>
|
||||
<label name="value"/>
|
||||
<field name="value"/>
|
||||
</form>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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. -->
|
||||
<tree editable="1">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="value" expand="2"/>
|
||||
</tree>
|
||||
7
modules/inbound_email/view/inbound_email_rule_list.xml
Normal file
7
modules/inbound_email/view/inbound_email_rule_list.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?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. -->
|
||||
<tree>
|
||||
<field name="inbox" expand="1"/>
|
||||
<field name="action" expand="2"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?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. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="inbox" expand="1"/>
|
||||
<field name="origin" expand="1"/>
|
||||
<field name="destination" expand="1"/>
|
||||
<field name="subject" expand="1"/>
|
||||
<field name="attachment_name" expand="1"/>
|
||||
<field name="action" expand="2"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user