first commit
This commit is contained in:
10
modules/party_relationship/view/party_form.xml
Normal file
10
modules/party_relationship/view/party_form.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. -->
|
||||
<data>
|
||||
<xpath expr="/form/notebook" position="inside">
|
||||
<page string="Relations" id="relations">
|
||||
<field name="relations" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
18
modules/party_relationship/view/relation_form.xml
Normal file
18
modules/party_relationship/view/relation_form.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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>
|
||||
<group col="6" colspan="4" id="relation">
|
||||
<label name="from_"/>
|
||||
<field name="from_"/>
|
||||
<label name="type"/>
|
||||
<field name="type" widget="selection"/>
|
||||
<label name="to"/>
|
||||
<field name="to"/>
|
||||
</group>
|
||||
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
</form>
|
||||
10
modules/party_relationship/view/relation_tree.xml
Normal file
10
modules/party_relationship/view/relation_tree.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="from_" expand="2"/>
|
||||
<field name="type" expand="1"/>
|
||||
<field name="to" expand="2"/>
|
||||
<field name="start_date" optional="1"/>
|
||||
<field name="end_date" optional="1"/>
|
||||
</tree>
|
||||
12
modules/party_relationship/view/relation_type_form.xml
Normal file
12
modules/party_relationship/view/relation_type_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="reverse"/>
|
||||
<field name="reverse"/>
|
||||
<separator name="usages" colspan="4"/>
|
||||
<field name="usages" colspan="4"/>
|
||||
</form>
|
||||
|
||||
7
modules/party_relationship/view/relation_type_tree.xml
Normal file
7
modules/party_relationship/view/relation_type_tree.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="name" expand="1"/>
|
||||
<field name="reverse" expand="1"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user