first commit
This commit is contained in:
21
modules/country/view/country_form.xml
Normal file
21
modules/country/view/country_form.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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="6">
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="region"/>
|
||||
<field name="region"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="code3"/>
|
||||
<field name="code3"/>
|
||||
<label name="code_numeric"/>
|
||||
<field name="code_numeric"/>
|
||||
<field name="subdivisions" colspan="6"/>
|
||||
|
||||
<field name="members" colspan="6"/>
|
||||
</form>
|
||||
12
modules/country/view/country_tree.xml
Normal file
12
modules/country/view/country_tree.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. -->
|
||||
<tree>
|
||||
<field name="name" expand="2">
|
||||
<prefix name="flag"/>
|
||||
</field>
|
||||
<field name="code" optional="1"/>
|
||||
<field name="code3" optional="1"/>
|
||||
<field name="code_numeric" optional="1"/>
|
||||
<field name="region" expand="1" optional="1"/>
|
||||
</tree>
|
||||
11
modules/country/view/organization_form.xml
Normal file
11
modules/country/view/organization_form.xml
Normal file
@@ -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. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
|
||||
<field name="members" colspan="4"/>
|
||||
</form>
|
||||
7
modules/country/view/organization_list.xml
Normal file
7
modules/country/view/organization_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="name" expand="2"/>
|
||||
<field name="code" optional="0"/>
|
||||
</tree>
|
||||
14
modules/country/view/organization_member_form.xml
Normal file
14
modules/country/view/organization_member_form.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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="country"/>
|
||||
<field name="country"/>
|
||||
<label name="organization"/>
|
||||
<field name="organization"/>
|
||||
|
||||
<label name="from_date"/>
|
||||
<field name="from_date"/>
|
||||
<label name="to_date"/>
|
||||
<field name="to_date"/>
|
||||
</form>
|
||||
9
modules/country/view/organization_member_list.xml
Normal file
9
modules/country/view/organization_member_list.xml
Normal file
@@ -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. -->
|
||||
<tree>
|
||||
<field name="country" expand="2"/>
|
||||
<field name="organization" expand="2"/>
|
||||
<field name="from_date" optional="0"/>
|
||||
<field name="to_date" optional="0"/>
|
||||
</tree>
|
||||
13
modules/country/view/postal_code_form.xml
Normal file
13
modules/country/view/postal_code_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="country"/>
|
||||
<field name="country"/>
|
||||
<label name="subdivision"/>
|
||||
<field name="subdivision"/>
|
||||
<label name="postal_code"/>
|
||||
<field name="postal_code"/>
|
||||
<label name="city"/>
|
||||
<field name="city"/>
|
||||
</form>
|
||||
9
modules/country/view/postal_code_list.xml
Normal file
9
modules/country/view/postal_code_list.xml
Normal file
@@ -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. -->
|
||||
<tree>
|
||||
<field name="country" expand="1"/>
|
||||
<field name="subdivision" expand="1"/>
|
||||
<field name="postal_code" expand="1"/>
|
||||
<field name="city" expand="1"/>
|
||||
</tree>
|
||||
16
modules/country/view/region_form.xml
Normal file
16
modules/country/view/region_form.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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="code_numeric"/>
|
||||
<field name="code_numeric"/>
|
||||
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
|
||||
<field name="subregions" colspan="4"/>
|
||||
|
||||
<field name="countries" colspan="4"/>
|
||||
</form>
|
||||
7
modules/country/view/region_list.xml
Normal file
7
modules/country/view/region_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="name" expand="1"/>
|
||||
<field name="code_numeric" optional="1"/>
|
||||
</tree>
|
||||
7
modules/country/view/region_tree.xml
Normal file
7
modules/country/view/region_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 keyword_open="1">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="code_numeric" optional="1"/>
|
||||
</tree>
|
||||
18
modules/country/view/subdivision_form.xml
Normal file
18
modules/country/view/subdivision_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 col="6">
|
||||
<label name="country"/>
|
||||
<field name="country"/>
|
||||
<newline/>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
</form>
|
||||
8
modules/country/view/subdivision_tree.xml
Normal file
8
modules/country/view/subdivision_tree.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?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="code"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user