first commit
This commit is contained in:
59
modules/project/view/work_form.xml
Normal file
59
modules/project/view/work_form.xml
Normal file
@@ -0,0 +1,59 @@
|
||||
<?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" colspan="3"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="party_address"/>
|
||||
<field name="party_address"/>
|
||||
<notebook colspan="8">
|
||||
<page string="General" id="general" col="6">
|
||||
<label name="timesheet_available" string="Timesheet:"/>
|
||||
<group col="-1" id="timesheet">
|
||||
<field name="timesheet_available" xexpand="0"/>
|
||||
<label name="timesheet_start_date" string="Start:"/>
|
||||
<field name="timesheet_start_date" xexpand="0"/>
|
||||
<label name="timesheet_end_date" string="End:"/>
|
||||
<field name="timesheet_end_date" xexpand="0"/>
|
||||
</group>
|
||||
<newline/>
|
||||
<label name="effort_duration"/>
|
||||
<field name="effort_duration"/>
|
||||
<label name="progress"/>
|
||||
<group col="2" id="progress">
|
||||
<field name="progress" factor="100" xexpand="0"/>
|
||||
<label name="progress" string="%" xalign="0.0" xexpand="1"/>
|
||||
</group>
|
||||
<newline/>
|
||||
<label name="timesheet_duration"/>
|
||||
<field name="timesheet_duration"/>
|
||||
<label name="total_effort"/>
|
||||
<field name="total_effort"/>
|
||||
<newline/>
|
||||
<separator name="comment" colspan="6"/>
|
||||
<field name="comment" colspan="6"/>
|
||||
<group col="4" colspan="6" id="status_buttons">
|
||||
<group col="2" colspan="2" id="status">
|
||||
<label name="status"/>
|
||||
<field name="status" widget="selection"/>
|
||||
</group>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
</group>
|
||||
</group>
|
||||
</page>
|
||||
<page name="children" col="1">
|
||||
<field name="children"
|
||||
view_ids="project.work_view_list_children"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
12
modules/project/view/work_list.xml
Normal file
12
modules/project/view/work_list.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 sequence="sequence">
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="rec_name" expand="1"/>
|
||||
<field name="timesheet_duration" optional="0"/>
|
||||
<field name="total_effort" optional="0"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="status"/>
|
||||
<field name="total_progress" widget="progressbar" expand="1" optional="0"/>
|
||||
</tree>
|
||||
10
modules/project/view/work_list_children.xml
Normal file
10
modules/project/view/work_list_children.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 sequence="sequence">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="timesheet_duration" optional="0"/>
|
||||
<field name="total_effort" optional="0"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="status"/>
|
||||
</tree>
|
||||
9
modules/project/view/work_list_simple.xml
Normal file
9
modules/project/view/work_list_simple.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="company" expand="1" optional="1"/>
|
||||
<field name="rec_name" expand="1"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="status" optional="0"/>
|
||||
</tree>
|
||||
24
modules/project/view/work_status_form.xml
Normal file
24
modules/project/view/work_status_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>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<group colspan="2" col="-1" id="checkboxes">
|
||||
<label name="active"/>
|
||||
<field name="active" xexpand="0" width="25"/>
|
||||
<label name="default"/>
|
||||
<field name="default" xexpand="0" width="25"/>
|
||||
<label name="count"/>
|
||||
<field name="count" xexpand="0" width="25"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
</group>
|
||||
<label name="types"/>
|
||||
<field name="types" yexpand="0"/>
|
||||
<label name="progress"/>
|
||||
<group col="-1" id="progress">
|
||||
<field name="progress" factor="100" xexpand="0"/>
|
||||
<label name="progress" string="%" xalign="0.0" xexpand="1"/>
|
||||
</group>
|
||||
</form>
|
||||
8
modules/project/view/work_status_list.xml
Normal file
8
modules/project/view/work_status_list.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 sequence="sequence">
|
||||
<field name="name"/>
|
||||
<field name="types" expand="1"/>
|
||||
<field name="default"/>
|
||||
</tree>
|
||||
12
modules/project/view/work_tree.xml
Normal file
12
modules/project/view/work_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 sequence="sequence">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="timesheet_duration" optional="0"/>
|
||||
<field name="total_effort" optional="0"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="status"/>
|
||||
<field name="total_progress" widget="progressbar" expand="1" optional="0"/>
|
||||
</tree>
|
||||
9
modules/project/view/work_tree_simple.xml
Normal file
9
modules/project/view/work_tree_simple.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 sequence="sequence">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="status" optional="0"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user