Initial import from Docker volume
This commit is contained in:
8
modules/company/view/company_config_start_form.xml
Executable file
8
modules/company/view/company_config_start_form.xml
Executable 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. -->
|
||||
<form col="2">
|
||||
<image name="tryton-info" xexpand="0" xfill="0"/>
|
||||
<label string="You can now add your company into the system." id="add"
|
||||
yalign="0.0" xalign="0.0" xexpand="1"/>
|
||||
</form>
|
||||
22
modules/company/view/company_form.xml
Executable file
22
modules/company/view/company_form.xml
Executable file
@@ -0,0 +1,22 @@
|
||||
<?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="party"/>
|
||||
<field name="party"/>
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
<label name="timezone"/>
|
||||
<field name="timezone"/>
|
||||
<notebook colspan="6">
|
||||
<page name="employees" col="1">
|
||||
<field name="employees"/>
|
||||
</page>
|
||||
<page string="Reports" col="1" id="reports">
|
||||
<separator name="header"/>
|
||||
<field name="header"/>
|
||||
<separator name="footer"/>
|
||||
<field name="footer"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
8
modules/company/view/company_list.xml
Executable file
8
modules/company/view/company_list.xml
Executable 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="party" expand="1"/>
|
||||
<field name="currency" optional="1"/>
|
||||
<field name="timezone" optional="1"/>
|
||||
</tree>
|
||||
8
modules/company/view/cron_form.xml
Executable file
8
modules/company/view/cron_form.xml
Executable 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. -->
|
||||
<data>
|
||||
<xpath expr="/form" position="inside">
|
||||
<field name="companies" colspan="4"/>
|
||||
</xpath>
|
||||
</data>
|
||||
15
modules/company/view/employee_form.xml
Executable file
15
modules/company/view/employee_form.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="party"/>
|
||||
<field name="party"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<label name="supervisor"/>
|
||||
<field name="supervisor"/>
|
||||
</form>
|
||||
10
modules/company/view/employee_tree.xml
Executable file
10
modules/company/view/employee_tree.xml
Executable 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="party" expand="1"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="supervisor" expand="1" optional="1"/>
|
||||
<field name="start_date" optional="1"/>
|
||||
<field name="end_date" optional="1"/>
|
||||
</tree>
|
||||
9
modules/company/view/sequence_form.xml
Executable file
9
modules/company/view/sequence_form.xml
Executable 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. -->
|
||||
<data>
|
||||
<xpath expr="/form/field[@name='active']" position="after">
|
||||
<label name="company"/>
|
||||
<field name="company" colspan="3"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/company/view/sequence_tree.xml
Executable file
8
modules/company/view/sequence_tree.xml
Executable 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. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='sequence_type']" position="after">
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
19
modules/company/view/user_form.xml
Executable file
19
modules/company/view/user_form.xml
Executable file
@@ -0,0 +1,19 @@
|
||||
<?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/page/separator[@name='signature']"
|
||||
position="before">
|
||||
<label name="company"/>
|
||||
<field name="company" widget="selection"/>
|
||||
<label name="company_filter"/>
|
||||
<field name="company_filter"/>
|
||||
|
||||
<label name="employee"/>
|
||||
<field name="employee" widget="selection"/>
|
||||
<newline/>
|
||||
|
||||
<field name="companies" colspan="2"/>
|
||||
<field name="employees" colspan="2"/>
|
||||
</xpath>
|
||||
</data>
|
||||
16
modules/company/view/user_form_preferences.xml
Executable file
16
modules/company/view/user_form_preferences.xml
Executable 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. -->
|
||||
<data>
|
||||
<xpath expr="/form/notebook/page/separator[@name='signature']"
|
||||
position="before">
|
||||
<label name="company"/>
|
||||
<group id="company" col="-1">
|
||||
<field name="company" widget="selection"/>
|
||||
<label name="company_filter"/>
|
||||
<field name="company_filter"/>
|
||||
</group>
|
||||
<label name="employee"/>
|
||||
<field name="employee" widget="selection"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user