first commit
This commit is contained in:
9
modules/timesheet/view/hours_employee_context_form.xml
Normal file
9
modules/timesheet/view/hours_employee_context_form.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. -->
|
||||
<form>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
</form>
|
||||
11
modules/timesheet/view/hours_employee_graph.xml
Normal file
11
modules/timesheet/view/hours_employee_graph.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. -->
|
||||
<graph>
|
||||
<x>
|
||||
<field name="employee"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="duration" timedelta="company_work_time"/>
|
||||
</y>
|
||||
</graph>
|
||||
9
modules/timesheet/view/hours_employee_monthly_tree.xml
Normal file
9
modules/timesheet/view/hours_employee_monthly_tree.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="year" grouping="0"/>
|
||||
<field name="month" widget="selection"/>
|
||||
<field name="employee" expand="2"/>
|
||||
<field name="duration" expand="1"/>
|
||||
</tree>
|
||||
7
modules/timesheet/view/hours_employee_tree.xml
Normal file
7
modules/timesheet/view/hours_employee_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="employee" expand="2"/>
|
||||
<field name="duration" sum="1" expand="1"/>
|
||||
</tree>
|
||||
9
modules/timesheet/view/hours_employee_weekly_tree.xml
Normal file
9
modules/timesheet/view/hours_employee_weekly_tree.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="year" grouping="0"/>
|
||||
<field name="week" grouping="0"/>
|
||||
<field name="employee" expand="2"/>
|
||||
<field name="duration" expand="1"/>
|
||||
</tree>
|
||||
9
modules/timesheet/view/line_enter_start_form.xml
Normal file
9
modules/timesheet/view/line_enter_start_form.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. -->
|
||||
<form>
|
||||
<label name="employee"/>
|
||||
<field name="employee"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
</form>
|
||||
17
modules/timesheet/view/line_form.xml
Normal file
17
modules/timesheet/view/line_form.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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="employee"/>
|
||||
<field name="employee"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="duration"/>
|
||||
<field name="duration"/>
|
||||
<label name="work"/>
|
||||
<field name="work"/>
|
||||
<label name="description"/>
|
||||
<field name="description"/>
|
||||
</form>
|
||||
11
modules/timesheet/view/line_tree.xml
Normal file
11
modules/timesheet/view/line_tree.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. -->
|
||||
<tree editable="1">
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="employee" expand="2"/>
|
||||
<field name="date"/>
|
||||
<field name="duration" sum="1"/>
|
||||
<field name="work" expand="1"/>
|
||||
<field name="description" expand="2" optional="0"/>
|
||||
</tree>
|
||||
9
modules/timesheet/view/work_context_form.xml
Normal file
9
modules/timesheet/view/work_context_form.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. -->
|
||||
<form>
|
||||
<label name="from_date"/>
|
||||
<field name="from_date"/>
|
||||
<label name="to_date"/>
|
||||
<field name="to_date"/>
|
||||
</form>
|
||||
19
modules/timesheet/view/work_form.xml
Normal file
19
modules/timesheet/view/work_form.xml
Normal 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. -->
|
||||
<form>
|
||||
<group id="labels" col="1" xexpand="0" yfill="1">
|
||||
<label name="name" xexpand="1" yexpand="1"/>
|
||||
<label name="origin" xexpand="1" yexpand="1"/>
|
||||
</group>
|
||||
<group id="names" col="1">
|
||||
<field name="name"/>
|
||||
<field name="origin"/>
|
||||
</group>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="timesheet_start_date"/>
|
||||
<field name="timesheet_start_date"/>
|
||||
<label name="timesheet_end_date"/>
|
||||
<field name="timesheet_end_date"/>
|
||||
</form>
|
||||
11
modules/timesheet/view/work_graph.xml
Normal file
11
modules/timesheet/view/work_graph.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. -->
|
||||
<graph type="pie">
|
||||
<x>
|
||||
<field name="work"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="duration" timedelta="company_work_time"/>
|
||||
</y>
|
||||
</graph>
|
||||
9
modules/timesheet/view/work_list.xml
Normal file
9
modules/timesheet/view/work_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="rec_name" expand="1"/>
|
||||
<field name="origin" tree_invisible="1"/>
|
||||
<field name="timesheet_start_date" tree_invisible="1"/>
|
||||
<field name="timesheet_end_date" tree_invisible="1"/>
|
||||
</tree>
|
||||
8
modules/timesheet/view/work_list_report.xml
Normal file
8
modules/timesheet/view/work_list_report.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="rec_name" expand="2"/>
|
||||
<field name="duration" expand="1"/>
|
||||
<field name="origin" tree_invisible="1"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user