[IMP]
[odoo/odoo.git] / addons / project_timesheet / project_timesheet_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4         <record id="project_invoice_form" model="ir.ui.view">
5             <field name="name">Inherit project form : Invoicing Data</field>
6             <field name="model">project.project</field>
7             <field name="type">form</field>
8             <field name="inherit_id" ref="project.edit_project"/>
9             <field name="arch" type="xml">
10                 <xpath expr="//field[@name='task']" position='after'>
11                     <field name="timesheets"/>
12                 </xpath>
13             
14                 <field name="warn_customer" position="after">
15                     <group colspan="4" col="4">
16                         <separator colspan="4" string="Invoicing Data"/>
17                         <field name="pricelist_id" domain="[('type','=','sale')]" widget="selection"/>
18                         <field name="to_invoice" widget="selection" string="Invoice Task Work"/>
19                         <field name="amount_max" groups="base.group_extended"/>
20                         <field name="amount_invoiced" groups="base.group_extended"/>
21                     </group>
22                 </field>
23             </field>
24         </record>
25
26         <record id="view_project_kanban_inherited" model="ir.ui.view">
27             <field name="name">project.project.kanban.inherited</field>
28             <field name="model">project.project</field>
29             <field name="type">kanban</field>
30             <field name="inherit_id" ref="project.view_project_kanban"/>
31             <field name="arch" type="xml">
32                 <field name="task" position="after">
33                     <field name="timesheets"/>
34                     <field name="total_hours"/>
35                     <field name="effective_hours"/>
36                 </field>
37                 <xpath expr="//t[@t-name='tasks']" position="after">
38                     <t t-name="timesheets">
39                         <ul class="oe_kanban_tooltip">
40                             <li><b>Timesheets</b></li>
41                         </ul>
42                    </t>
43                 </xpath>
44                 <xpath expr="//td[@class='buttons']" position="inside">
45                     <t t-if="record.timesheets.raw_value">
46                         <button name="open_timesheets" class="oe_project_buttons" type="object" tooltip="timesheets"><img src="/project_timesheet/static/src/img/timesheet_icon.png" class="project_icon"/></button>
47                     </t>
48                 </xpath>
49                 <xpath expr="//td[@class='td_image']" position="inside">
50                     
51
52                         <div class="sequence">
53                             <kbd class="user">Hours</kbd>
54                             <div class="manager"><t t-esc="Math.round(record.total_hours.raw_value-record.effective_hours.raw_value)"/> h</div>
55                         </div>
56                 </xpath>
57                 <xpath expr="//td[@class='td_deadline']" position="inside">
58                     <div class="sequence">
59                         <button name="open_timesheets" class="oe_to_invoice_buttons" type="object">
60                             <small>To invoice</small>
61                             <div class="manager">
62                                 <field name="amount_invoiced"/>
63                             </div>
64                         </button>
65                     </div>
66                 </xpath>
67             </field>
68         </record>
69
70         <record id="project_invoice_form_cutomer" model="ir.ui.view">
71             <field name="name">Inherit project form : Customer</field>
72             <field name="model">project.project</field>
73             <field name="type">form</field>
74             <field name="inherit_id" ref="project_invoice_form"/>
75             <field name="arch" type="xml">
76                 <field name="partner_id" position="replace">
77                     <field colspan="4" name="partner_id" on_change="onchange_partner_id(partner_id)" select="1" string="Customer"  attrs="{'required':[('to_invoice','!=',False)]}"/>
78                 </field>
79             </field>
80         </record>
81
82         <record id="project_invoice_search" model="ir.ui.view">
83             <field name="name">Inherit project search view : Invoicing Data</field>
84             <field name="model">project.project</field>
85             <field name="type">search</field>
86             <field name="inherit_id" ref="project.view_project_project_filter"/>
87             <field name="arch" type="xml">
88                 <xpath expr='//filter[@string="Member"]' position='after'>
89                     <separator orientation="vertical"/>
90                     <filter icon="terp-camera_test" string="Billable" domain="[('to_invoice','!=', False)]" help="Billable Project"/>
91                 </xpath>
92             </field>
93         </record>
94         <record id="view_account_analytic_line_search_account_inherit" model="ir.ui.view">
95             <field name="name">account.analytic.line.search.account_id</field>
96             <field name="model">account.analytic.line</field>
97             <field name="type">search</field>
98             <field name="inherit_id" ref="account.view_account_analytic_line_filter"/>
99             <field name="arch" type="xml">
100                      <field name="account_id" position="replace">
101                     <field name="account_id" string="Analytic account/project" />
102                 </field>
103             </field>
104          </record>
105         <record id="view_account_analytic_line_form_inherit_account_id" model="ir.ui.view">
106             <field name="name">account.analytic.line.form.account_id</field>
107             <field name="model">account.analytic.line</field>
108             <field name="type">form</field>
109             <field name="inherit_id" ref="account.view_account_analytic_line_form"/>
110             <field name="arch" type="xml">
111                 <field name="account_id"  position="replace">
112                    <field name="account_id" string="Analytic account/project" on_change="on_change_account_id(account_id)"/>
113                 </field>
114             </field>
115         </record>
116        <record id="view_account_analytic_line_tree_inherit_account_id" model="ir.ui.view">
117             <field name="name">account.analytic.line.tree.account_id</field>
118             <field name="model">account.analytic.line</field>
119             <field name="type">tree</field>
120             <field name="inherit_id" ref="account.view_account_analytic_line_tree"/>
121             <field name="arch" type="xml">
122                 <field name="account_id"  position="replace">
123                     <field name="account_id" string="Analytic account/project"/>
124                 </field>
125             </field>
126         </record>
127
128         <!-- Menus -->
129         <record id="action_project_timesheet_bill_task" model="ir.actions.act_window">
130             <field name="name">Bill Tasks Works</field>
131             <field name="res_model">account.analytic.line</field>
132             <field name="view_type">form</field>
133             <field name="view_mode">tree,form</field>
134             <field name="domain">[]</field>
135             <field name="context">{}</field>
136             <field name="view_id" ref="view_account_analytic_line_tree_inherit_account_id"/>
137             <field name="help">You will find here all works made on tasks that you can invoice.
138 In order to invoice the time spent on a project, you must define the
139 pricelist and the field 'Invoice Task Work' on the tab 'Billing' of
140 the project form.</field>
141         </record>
142         <menuitem action="hr_timesheet.action_hr_timesheet_sign_in"
143             id="menu_hr_timesheet_sign_in"
144             groups="base.group_extended"
145             parent="hr_attendance.menu_hr_attendance"
146             sequence="5" />
147
148         <menuitem id="menu_project_billing" name="Invoicing"
149                   parent="base.menu_main_pm" sequence="5"/>
150         <menuitem id="menu_project_billing_line" name="Invoice Tasks Work"
151             parent="menu_project_billing" action="action_project_timesheet_bill_task"/>
152
153         <!--
154             Time Tracking menu in project Management
155         -->
156 <!--        <menuitem id="menu_project_working_hours" parent="base.menu_project_management_time_tracking" action="hr_timesheet.act_hr_timesheet_line_evry1_all_form"/> -->
157
158         <record id="action_account_analytic_overdue" model="ir.actions.act_window">
159             <field name="name">Customer Projects</field>
160             <field name="res_model">account.analytic.account</field>
161             <field name="view_type">form</field>
162             <field name="view_mode">tree,form,graph</field>
163             <field name="context">{}</field>
164             <field name="domain">[('type','=','normal')]</field>
165             <field name="search_view_id" ref="account_analytic_analysis.view_account_analytic_account_overdue_search"/>
166             <field name="help">You will find here the contracts related to your customer projects in order to track the invoicing progress.</field>
167         </record>
168         <menuitem id="menu_invoicing_contracts" parent="menu_project_billing" sequence="4"
169             action="account_analytic_analysis.action_account_analytic_overdue"/>
170
171     </data>
172 </openerp>