851a42c74e4525b8d9863ab9114e9b6c722858a1
[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='//tr[@name="use_tasks_row"]' position='after'>
11                     <tr name="use_timesheets_row">
12                         <th style="border-right:1px solid #DDD;" width="140px">Timesheets</th>
13                         <td><field name="use_timesheets" nolabel="1"/></td>
14                         <td style="text-align:right;"><button class="oe_btn_width" name="open_timesheets" string="Timesheets" type="object" attrs="{'invisible':[('use_timesheets','=', 0)]}"/></td>
15                     </tr>
16                 </xpath>
17             </field>
18         </record>
19
20         <record id="view_project_kanban_inherited" model="ir.ui.view">
21             <field name="name">project.project.kanban.inherited</field>
22             <field name="model">project.project</field>
23             <field name="type">kanban</field>
24             <field name="inherit_id" ref="project.view_project_kanban"/>
25             <field name="arch" type="xml">
26                 <field name="use_tasks" position="after">
27                     <field name="use_timesheets"/>
28                     <field name="timesheet_count"/>
29                     <field name="currency_id"/>
30                     <field name="partner_id"/>
31                 </field>
32                 <xpath expr="//div[contains(@class, 'oe_kanban_project_list')]" position="inside">
33                     <a t-if="record.use_timesheets.raw_value"
34                         name="open_timesheets" type="object">Timesheets(<field name="timesheet_count"/>)</a>
35                 </xpath>
36                 <xpath expr="//div[contains(@class, 'oe_kanban_project_deadline')]" position="before">
37                     <div class="oe_kanban_project_fields oe_kanban_project_invoice" t-if="record.partner_id.raw_value">
38                         <div>Amount to invoice</div>
39                         <div><field name="amount_to_invoice"/> <t t-esc="record.currency_id.raw_value[1].split(' ')[1][1]"/></div>
40                         <div>Time to Invoice</div>
41                         <div><field name="time_to_invoice"/> <field name="company_uom_id"/></div>
42                     </div>
43                 </xpath>
44             </field>
45         </record>
46
47         <record id="project_invoice_form_cutomer" model="ir.ui.view">
48             <field name="name">Inherit project form : Customer</field>
49             <field name="model">project.project</field>
50             <field name="type">form</field>
51             <field name="inherit_id" ref="project_invoice_form"/>
52             <field name="arch" type="xml">
53                 <field name="partner_id" position="replace">
54                     <field name="partner_id" on_change="onchange_partner_id(partner_id)" select="1" string="Customer"  attrs="{'required':[('to_invoice','!=',False)]}"/>
55                 </field>
56             </field>
57         </record>
58
59         <record id="project_invoice_search" model="ir.ui.view">
60             <field name="name">Inherit project search view : Invoicing Data</field>
61             <field name="model">project.project</field>
62             <field name="type">search</field>
63             <field name="inherit_id" ref="project.view_project_project_filter"/>
64             <field name="arch" type="xml">
65                 <xpath expr='//filter[@string="Member"]' position='after'>
66                     <separator orientation="vertical"/>
67                     <filter icon="terp-camera_test" string="Billable" domain="[('to_invoice','!=', False)]" help="Billable Project"/>
68                 </xpath>
69             </field>
70         </record>
71         <record id="view_account_analytic_line_search_account_inherit" model="ir.ui.view">
72             <field name="name">account.analytic.line.search.account_id</field>
73             <field name="model">account.analytic.line</field>
74             <field name="type">search</field>
75             <field name="inherit_id" ref="account.view_account_analytic_line_filter"/>
76             <field name="arch" type="xml">
77                      <field name="account_id" position="replace">
78                     <field name="account_id" string="Analytic account/project" />
79                 </field>
80             </field>
81          </record>
82         <record id="view_account_analytic_line_form_inherit_account_id" model="ir.ui.view">
83             <field name="name">account.analytic.line.form.account_id</field>
84             <field name="model">account.analytic.line</field>
85             <field name="type">form</field>
86             <field name="inherit_id" ref="account.view_account_analytic_line_form"/>
87             <field name="arch" type="xml">
88                 <field name="account_id"  position="replace">
89                    <field name="account_id" string="Analytic account/project" on_change="on_change_account_id(account_id)"/>
90                 </field>
91             </field>
92         </record>
93        <record id="view_account_analytic_line_tree_inherit_account_id" model="ir.ui.view">
94             <field name="name">account.analytic.line.tree.account_id</field>
95             <field name="model">account.analytic.line</field>
96             <field name="type">tree</field>
97             <field name="inherit_id" ref="account.view_account_analytic_line_tree"/>
98             <field name="arch" type="xml">
99                 <field name="account_id"  position="replace">
100                     <field name="account_id" string="Analytic account/project"/>
101                 </field>
102             </field>
103         </record>
104
105         <!-- Menus -->
106         <record id="action_project_timesheet_bill_task" model="ir.actions.act_window">
107             <field name="name">Bill Tasks Works</field>
108             <field name="res_model">account.analytic.line</field>
109             <field name="view_type">form</field>
110             <field name="view_mode">tree,form</field>
111             <field name="domain">[]</field>
112             <field name="context">{}</field>
113             <field name="view_id" ref="view_account_analytic_line_tree_inherit_account_id"/>
114             <field name="help">You will find here all works made on tasks that you can invoice.
115 In order to invoice the time spent on a project, you must define the
116 pricelist and the field 'Invoice Task Work' on the tab 'Billing' of
117 the project form.</field>
118         </record>
119         <menuitem action="hr_timesheet.action_hr_timesheet_sign_in"
120             id="menu_hr_timesheet_sign_in"
121             parent="hr_attendance.menu_hr_attendance"
122             sequence="5" />
123
124         <menuitem id="menu_project_billing" name="Invoicing"
125                   parent="base.menu_main_pm" sequence="5"/>
126         <menuitem id="menu_project_billing_line" name="Invoice Tasks Work"
127             parent="menu_project_billing" action="action_project_timesheet_bill_task"/>
128
129         <!--
130             Time Tracking menu in project Management
131         -->
132 <!--        <menuitem id="menu_project_working_hours" parent="base.menu_project_management_time_tracking" action="hr_timesheet.act_hr_timesheet_line_evry1_all_form"/> -->
133
134         <record id="action_account_analytic_overdue" model="ir.actions.act_window">
135             <field name="name">Customer Projects</field>
136             <field name="res_model">account.analytic.account</field>
137             <field name="view_type">form</field>
138             <field name="view_mode">tree,form,graph</field>
139             <field name="context">{}</field>
140             <field name="domain">[('type','=','normal')]</field>
141             <field name="search_view_id" ref="account_analytic_analysis.view_account_analytic_account_overdue_search"/>
142             <field name="help">You will find here the contracts related to your customer projects in order to track the invoicing progress.</field>
143         </record>
144         <menuitem id="menu_invoicing_contracts" parent="menu_project_billing" sequence="4"
145             action="account_analytic_analysis.action_account_analytic_overdue"/>
146
147     </data>
148 </openerp>