[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>
35                 <xpath expr="//t[@t-name='tasks']" position="after">
36                     <t t-name="timesheets">
37                         <ul class="oe_kanban_tooltip">
38                             <li><b>Timesheets</b></li>
39                         </ul>
40                    </t>
41                 </xpath>
42                 <xpath expr="//td[@class='buttons']" position="inside">
43                     <t t-if="record.timesheets.raw_value">
44                         <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>
45                     </t>
46                 </xpath>
47                 <xpath expr="//div[@class='sequence']" position="after">
48                     
49                     <div class="sequence">
50                         <button name="open_timesheets" class="oe_to_invoice_buttons" type="object">
51                             <!--<kbd class="to_invoice">To invoice</kbd>-->
52                             <div class="manager">
53                                 <code>To invoice</code>
54                                 <strong><field name="amount_invoiced"/></strong>
55                             </div>
56                         </button>
57                     </div>
58                         
59                 </xpath>
60             </field>
61         </record>
62
63         <record id="project_invoice_form_cutomer" model="ir.ui.view">
64             <field name="name">Inherit project form : Customer</field>
65             <field name="model">project.project</field>
66             <field name="type">form</field>
67             <field name="inherit_id" ref="project_invoice_form"/>
68             <field name="arch" type="xml">
69                 <field name="partner_id" position="replace">
70                     <field colspan="4" name="partner_id" on_change="onchange_partner_id(partner_id)" select="1" string="Customer"  attrs="{'required':[('to_invoice','!=',False)]}"/>
71                 </field>
72             </field>
73         </record>
74
75         <record id="project_invoice_search" model="ir.ui.view">
76             <field name="name">Inherit project search view : Invoicing Data</field>
77             <field name="model">project.project</field>
78             <field name="type">search</field>
79             <field name="inherit_id" ref="project.view_project_project_filter"/>
80             <field name="arch" type="xml">
81                 <xpath expr='//filter[@string="Member"]' position='after'>
82                     <separator orientation="vertical"/>
83                     <filter icon="terp-camera_test" string="Billable" domain="[('to_invoice','!=', False)]" help="Billable Project"/>
84                 </xpath>
85             </field>
86         </record>
87         <record id="view_account_analytic_line_search_account_inherit" model="ir.ui.view">
88             <field name="name">account.analytic.line.search.account_id</field>
89             <field name="model">account.analytic.line</field>
90             <field name="type">search</field>
91             <field name="inherit_id" ref="account.view_account_analytic_line_filter"/>
92             <field name="arch" type="xml">
93                      <field name="account_id" position="replace">
94                     <field name="account_id" string="Analytic account/project" />
95                 </field>
96             </field>
97          </record>
98         <record id="view_account_analytic_line_form_inherit_account_id" model="ir.ui.view">
99             <field name="name">account.analytic.line.form.account_id</field>
100             <field name="model">account.analytic.line</field>
101             <field name="type">form</field>
102             <field name="inherit_id" ref="account.view_account_analytic_line_form"/>
103             <field name="arch" type="xml">
104                 <field name="account_id"  position="replace">
105                    <field name="account_id" string="Analytic account/project" on_change="on_change_account_id(account_id)"/>
106                 </field>
107             </field>
108         </record>
109        <record id="view_account_analytic_line_tree_inherit_account_id" model="ir.ui.view">
110             <field name="name">account.analytic.line.tree.account_id</field>
111             <field name="model">account.analytic.line</field>
112             <field name="type">tree</field>
113             <field name="inherit_id" ref="account.view_account_analytic_line_tree"/>
114             <field name="arch" type="xml">
115                 <field name="account_id"  position="replace">
116                     <field name="account_id" string="Analytic account/project"/>
117                 </field>
118             </field>
119         </record>
120
121         <!-- Menus -->
122         <record id="action_project_timesheet_bill_task" model="ir.actions.act_window">
123             <field name="name">Bill Tasks Works</field>
124             <field name="res_model">account.analytic.line</field>
125             <field name="view_type">form</field>
126             <field name="view_mode">tree,form</field>
127             <field name="domain">[]</field>
128             <field name="context">{}</field>
129             <field name="view_id" ref="view_account_analytic_line_tree_inherit_account_id"/>
130             <field name="help">You will find here all works made on tasks that you can invoice.
131 In order to invoice the time spent on a project, you must define the
132 pricelist and the field 'Invoice Task Work' on the tab 'Billing' of
133 the project form.</field>
134         </record>
135         <menuitem action="hr_timesheet.action_hr_timesheet_sign_in"
136             id="menu_hr_timesheet_sign_in"
137             groups="base.group_extended"
138             parent="hr_attendance.menu_hr_attendance"
139             sequence="5" />
140
141         <menuitem id="menu_project_billing" name="Invoicing"
142                   parent="base.menu_main_pm" sequence="5"/>
143         <menuitem id="menu_project_billing_line" name="Invoice Tasks Work"
144             parent="menu_project_billing" action="action_project_timesheet_bill_task"/>
145
146         <!--
147             Time Tracking menu in project Management
148         -->
149 <!--        <menuitem id="menu_project_working_hours" parent="base.menu_project_management_time_tracking" action="hr_timesheet.act_hr_timesheet_line_evry1_all_form"/> -->
150
151         <record id="action_account_analytic_overdue" model="ir.actions.act_window">
152             <field name="name">Customer Projects</field>
153             <field name="res_model">account.analytic.account</field>
154             <field name="view_type">form</field>
155             <field name="view_mode">tree,form,graph</field>
156             <field name="context">{}</field>
157             <field name="domain">[('type','=','normal')]</field>
158             <field name="search_view_id" ref="account_analytic_analysis.view_account_analytic_account_overdue_search"/>
159             <field name="help">You will find here the contracts related to your customer projects in order to track the invoicing progress.</field>
160         </record>
161         <menuitem id="menu_invoicing_contracts" parent="menu_project_billing" sequence="4"
162             action="account_analytic_analysis.action_account_analytic_overdue"/>
163
164     </data>
165 </openerp>