Launchpad automatic translations update.
[odoo/odoo.git] / addons / project_gtd / project_gtd_view.xml
1 <?xml version="1.0" ?>
2 <openerp>
3     <data>
4     <record model="ir.ui.view" id="view_gtd_context_tree">
5         <field name="name">project.gtd.context.tree</field>
6         <field name="model">project.gtd.context</field>
7         <field name="type">tree</field>
8         <field name="arch" type="xml">
9             <tree string="Context">
10                 <field name="sequence" invisible="1"/>
11                 <field name="name" select="1"/>
12             </tree>
13         </field>
14     </record>
15
16     <record model="ir.ui.view" id="view_gtd_context_form">
17         <field name="name">project.gtd.context.form</field>
18         <field name="model">project.gtd.context</field>
19         <field name="type">form</field>
20         <field name="arch" type="xml">
21             <form string="Context">
22                 <field name="name" select="1"/>
23                 <field name="sequence"/>
24             </form>
25         </field>
26     </record>
27
28     <record model="ir.actions.act_window" id="open_gtd_context_tree">
29         <field name="name">Contexts</field>
30         <field name="res_model">project.gtd.context</field>
31         <field name="help">Contexts are defined in the "Getting Things Done" methodology. It allows you to categorize your tasks according to the context in which they have to be done: at the office, at home, when I take my car, etc.</field>
32     </record>
33
34     <menuitem name="Contexts" id="menu_open_gtd_time_contexts" groups="group_project_getting"
35                 parent="project.menu_tasks_config" action="open_gtd_context_tree"/>
36
37     <record model="ir.ui.view" id="view_gtd_timebox_tree">
38         <field name="name">project.gtd.timebox.tree</field>
39         <field name="model">project.gtd.timebox</field>
40         <field name="type">tree</field>
41         <field name="arch" type="xml">
42             <tree string="Timebox">
43                 <field name="sequence" invisible="1"/>
44                 <field name="name"/>
45                 <field name="icon"/>
46             </tree>
47         </field>
48     </record>
49
50     <record model="ir.ui.view" id="view_gtd_timebox_form">
51         <field name="name">project.gtd.timebox.form</field>
52         <field name="model">project.gtd.timebox</field>
53         <field name="type">form</field>
54         <field name="arch" type="xml">
55             <form string="Timeboxes">
56                 <separator string="Timebox Definition" colspan="4"/>
57                 <field name="name" select="1"/>
58                 <field name="sequence"/>
59                 <field name="icon"/>
60             </form>
61         </field>
62     </record>
63
64     <record model="ir.actions.act_window" id="open_gtd_timebox_tree">
65         <field name="name">Timeboxes</field>
66         <field name="res_model">project.gtd.timebox</field>
67         <field name="view_type">form</field>
68         <field name="view_mode">tree,form</field>
69         <field name="view_id" ref="view_gtd_timebox_tree"/>
70         <field name="help">Timeboxes are defined in the "Getting Things Done" methodology. A timebox defines a period of time in order to categorize your tasks: today, this week, this month, long term.</field>
71     </record>
72
73     <menuitem name="Timeboxes" id="menu_open_gtd_time_timeboxes" parent="project.menu_tasks_config" action="open_gtd_timebox_tree"/>
74
75     <record model="ir.ui.view" id="project_task_tree">
76         <field name="name">project.task.tree.timebox</field>
77         <field name="model">project.task</field>
78         <field name="type">tree</field>
79         <field name="inherit_id" ref="project.view_task_tree2" />
80         <field name="arch" type="xml">
81             <field name="remaining_hours" position="after">
82                 <field string="Timebox" name="timebox_id" groups="project_gtd.group_project_getting" invisible=" not context.get('gtd_visible', False)"/>
83                 <button name="prev_timebox" type="object" icon="gtk-go-back" string="Previous" states="draft,pending,open" groups="project_gtd.group_project_getting" invisible=" not context.get('gtd_visible',False)"/>
84                 <button name="next_timebox" type="object" icon="gtk-go-forward" string="Next" states="draft,pending,open" groups="project_gtd.group_project_getting" invisible=" not context.get('gtd_visible',False)"/>
85                 <field name="context_id" groups="project_gtd.group_project_getting" invisible="not context.get('gtd_visible', False)" widget="selection"/>
86                 <button name="do_reopen" states="done,cancelled" string="Reactivate" type="object" icon="gtk-convert" help="For reopening the tasks" invisible="not context.get('set_visible',False)"/>
87             </field>
88         </field>
89     </record>
90
91     <record model="ir.ui.view" id="project_task">
92         <field name="name">project.task.form.timebox</field>
93         <field name="model">project.task</field>
94         <field name="type">form</field>
95         <field name="inherit_id" ref="project.view_task_form2" />
96         <field name="arch" type="xml">
97             <field name="progress" position="after">
98                 <field name="context_id" widget="selection" groups="project_gtd.group_project_getting"/>
99                 <field name="timebox_id" widget="selection" select="1" groups="project_gtd.group_project_getting"/>
100             </field>
101         </field>
102     </record>
103
104     </data>
105 </openerp>