[IMP] contract management: misc improvements
[odoo/odoo.git] / addons / hr_timesheet / hr_timesheet_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="hr_timesheet_line_tree" model="ir.ui.view">
6             <field name="name">hr.analytic.timesheet.tree</field>
7             <field name="model">hr.analytic.timesheet</field>
8             <field name="type">tree</field>
9             <field name="arch" type="xml">
10                 <tree editable="bottom" string="Timesheet Lines">
11                     <field name="date" on_change="on_change_date(date)"/>
12                     <field name="user_id" on_change="on_change_user_id(user_id)" required="1"/>
13                     <field name="journal_id" invisible="1"/>
14                     <field name="name"/>
15                     <field domain="[('type','=','normal'),('use_timesheets','=',1)]" name="account_id" context="{'default_use_timesheets': 1}"/>
16                     <field name="product_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" required="1" domain="[('type','=','service')]" invisible="1"/>
17                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" sum="Total time" widget="float_time"/>
18                     <field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" invisible="1"/>
19                     <field name="amount" sum="Total cost" invisible="1"/>
20                     <field name="general_account_id" invisible="1"/>
21                 </tree>
22             </field>
23         </record>
24         <record id="hr_timesheet_line_form" model="ir.ui.view">
25             <field name="name">hr.analytic.timesheet.form</field>
26             <field name="model">hr.analytic.timesheet</field>
27             <field name="type">form</field>
28             <field name="arch" type="xml">
29                 <form string="Timesheet Lines">
30                     <group col="4">
31                         <field name="name" colspan="4"/>
32                         <field name="user_id" on_change="on_change_user_id(user_id)" required="1"/>
33                         <field name="date" on_change="on_change_date(date)"/>
34                     </group>
35                     <notebook>
36                         <page string="Information">
37                             <group>
38                                 <group string="Product">
39                                     <field name="product_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" required="1" domain="[('type','=','service')]"/>
40                                     <field name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
41                                     <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
42                                 </group>
43                                 <group string="Accounting">
44                                     <field domain="[('type','=','normal'),('state', '&lt;&gt;', 'close'),('parent_id','!=',False)]" name="account_id" select="1"/>
45                                     <field name="amount"/>
46                                     <field name="general_account_id"/>
47                                     <field name="journal_id"/>
48                                 </group>
49                             </group>
50                         </page>
51                     </notebook>
52                 </form>
53             </field>
54         </record>
55
56         <record id="hr_timesheet_line_search" model="ir.ui.view">
57             <field name="name">hr.analytic.timesheet.search</field>
58             <field name="model">hr.analytic.timesheet</field>
59             <field name="type">search</field>
60             <field name="arch" type="xml">
61                 <search string="Timesheet">
62                     <group>
63                         <filter name="today" icon="terp-go-today" domain="[('date', '=', time.strftime('%%Y-%%m-%%d'))]" string="Today"/>
64                         <separator orientation="vertical"/>
65                         <field name="user_id"/>
66                         <field name="account_id"/>
67                         <field name="date"/>
68                     </group>
69                     <newline/>
70                     <group expand="0" string="Group By...">
71                         <filter string="Users" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}"/>
72                         <separator orientation="vertical"/>
73                         <filter string="Analytic account" icon="terp-folder-green" domain="[]" context="{'group_by':'account_id'}"/>
74                         <filter string="Product" icon="terp-accessories-archiver" domain="[]" context="{'group_by':'product_id'}"/>
75                         <separator orientation="vertical"/>
76                         <filter string="Date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}"/>
77                     </group>
78                 </search>
79             </field>
80
81         </record>
82         
83         <record id="account_analytic_account_timesheet_form" model="ir.ui.view">
84             <field name="name">account.analytic.account.invoice.form</field>
85             <field name="model">account.analytic.account</field>
86             <field name="type">form</field>
87             <field name="inherit_id" ref="analytic.view_account_analytic_account_form"/>
88             <field name="arch" type="xml">
89                 <xpath expr='//separator[@name="project_sep"]' position='replace'>
90                     <separator name="project_sep" string="Project Management" colspan="4"/> <!-- removal of invisible attribute -->
91                 </xpath>
92                 <xpath expr='//separator[@name="project_sep"]' position='after'>
93                     <field name="use_timesheets"/>
94                 </xpath>
95             </field>
96         </record>
97
98         <record id="act_hr_timesheet_line_evry1_all_form" model="ir.actions.act_window">
99             <field name="name">Timesheet Lines</field>
100             <field name="type">ir.actions.act_window</field>
101             <field name="res_model">hr.analytic.timesheet</field>
102             <field name="view_type">form</field>
103             <field name="view_mode">tree,form</field>
104             <field name="context">{"search_default_today":1}</field>
105             <field name="search_view_id" ref="hr_timesheet_line_search"/>
106             <field name="help">Through this menu you can register and follow your workings hours by project every day.</field>
107         </record>
108
109         <menuitem id="menu_hr_working_hours" parent="hr_attendance.menu_hr_time_tracking" action="act_hr_timesheet_line_evry1_all_form"/>
110
111         <record id="hr_timesheet_employee_extd_form" model="ir.ui.view">
112             <field name="name">hr.timesheet.employee.extd_form</field>
113             <field name="model">hr.employee</field>
114             <field name="inherit_id" ref="hr.view_employee_form"/>
115             <field name="arch" type="xml">
116                 <page string="Categories" position="after">
117                     <page string="Timesheets" groups="base.group_hr_user">
118                         <field name="product_id" domain="[('type','=','service')]"/>
119                         <field name="journal_id" widget="selection"/>
120                     </page>
121                 </page>
122             </field>
123         </record>
124
125         <menuitem id="menu_hr_timesheet_reports" parent="base.menu_hr_reports" sequence="5" name="Timesheet"/>
126
127
128     </data>
129 </openerp>