[IMP] add bollean field in project.project for some module
[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            
11                 <xpath expr="//field[@name='progress_rate']" position='after'>
12                                 <field name="timesheets"/>
13                 </xpath>
14             
15                 <field name="warn_customer" position="after">
16                     <group colspan="4" col="4">
17                         <separator colspan="4" string="Invoicing Data"/>
18                         <field name="pricelist_id" domain="[('type','=','sale')]" widget="selection"/>
19                         <field name="to_invoice" widget="selection" string="Invoice Task Work"/>
20                         <field name="amount_max" groups="base.group_extended"/>
21                         <field name="amount_invoiced" groups="base.group_extended"/>
22                     </group>
23                 </field>
24             </field>
25         </record>
26
27         <record id="project_invoice_form_cutomer" model="ir.ui.view">
28             <field name="name">Inherit project form : Customer</field>
29             <field name="model">project.project</field>
30             <field name="type">form</field>
31             <field name="inherit_id" ref="project_invoice_form"/>
32             <field name="arch" type="xml">
33                 <field name="partner_id" position="replace">
34                     <field colspan="4" name="partner_id" on_change="onchange_partner_id(partner_id)" select="1" string="Customer"  attrs="{'required':[('to_invoice','!=',False)]}"/>
35                 </field>
36             </field>
37         </record>
38
39         <record id="project_invoice_search" model="ir.ui.view">
40             <field name="name">Inherit project search view : Invoicing Data</field>
41             <field name="model">project.project</field>
42             <field name="type">search</field>
43             <field name="inherit_id" ref="project.view_project_project_filter"/>
44             <field name="arch" type="xml">
45                 <xpath expr='//filter[@string="Member"]' position='after'>
46                     <separator orientation="vertical"/>
47                     <filter icon="terp-camera_test" string="Billable" domain="[('to_invoice','!=', False)]" help="Billable Project"/>
48                 </xpath>
49             </field>
50         </record>
51         <record id="view_account_analytic_line_search_account_inherit" model="ir.ui.view">
52             <field name="name">account.analytic.line.search.account_id</field>
53             <field name="model">account.analytic.line</field>
54             <field name="type">search</field>
55             <field name="inherit_id" ref="account.view_account_analytic_line_filter"/>
56             <field name="arch" type="xml">
57                      <field name="account_id" position="replace">
58                     <field name="account_id" string="Analytic account/project" />
59                 </field>
60             </field>
61          </record>
62         <record id="view_account_analytic_line_form_inherit_account_id" model="ir.ui.view">
63             <field name="name">account.analytic.line.form.account_id</field>
64             <field name="model">account.analytic.line</field>
65             <field name="type">form</field>
66             <field name="inherit_id" ref="account.view_account_analytic_line_form"/>
67             <field name="arch" type="xml">
68                 <field name="account_id"  position="replace">
69                    <field name="account_id" string="Analytic account/project" on_change="on_change_account_id(account_id)"/>
70                 </field>
71             </field>
72         </record>
73        <record id="view_account_analytic_line_tree_inherit_account_id" model="ir.ui.view">
74             <field name="name">account.analytic.line.tree.account_id</field>
75             <field name="model">account.analytic.line</field>
76             <field name="type">tree</field>
77             <field name="inherit_id" ref="account.view_account_analytic_line_tree"/>
78             <field name="arch" type="xml">
79                 <field name="account_id"  position="replace">
80                     <field name="account_id" string="Analytic account/project"/>
81                 </field>
82             </field>
83         </record>
84
85         <!-- Menus -->
86         <record id="action_project_timesheet_bill_task" model="ir.actions.act_window">
87             <field name="name">Bill Tasks Works</field>
88             <field name="res_model">account.analytic.line</field>
89             <field name="view_type">form</field>
90             <field name="view_mode">tree,form</field>
91             <field name="domain">[]</field>
92             <field name="context">{}</field>
93             <field name="view_id" ref="view_account_analytic_line_tree_inherit_account_id"/>
94             <field name="help">You will find here all works made on tasks that you can invoice.
95 In order to invoice the time spent on a project, you must define the
96 pricelist and the field 'Invoice Task Work' on the tab 'Billing' of
97 the project form.</field>
98         </record>
99         <menuitem action="hr_timesheet.action_hr_timesheet_sign_in"
100             id="menu_hr_timesheet_sign_in"
101             groups="base.group_extended"
102             parent="hr_attendance.menu_hr_attendance"
103             sequence="5" />
104
105         <menuitem id="menu_project_billing" name="Invoicing"
106                   parent="base.menu_main_pm" sequence="5"/>
107         <menuitem id="menu_project_billing_line" name="Invoice Tasks Work"
108             parent="menu_project_billing" action="action_project_timesheet_bill_task"/>
109
110         <!--
111             Time Tracking menu in project Management
112         -->
113 <!--        <menuitem id="menu_project_working_hours" parent="base.menu_project_management_time_tracking" action="hr_timesheet.act_hr_timesheet_line_evry1_all_form"/> -->
114
115         <record id="action_account_analytic_overdue" model="ir.actions.act_window">
116             <field name="name">Customer Projects</field>
117             <field name="res_model">account.analytic.account</field>
118             <field name="view_type">form</field>
119             <field name="view_mode">tree,form,graph</field>
120             <field name="context">{}</field>
121             <field name="domain">[('type','=','normal')]</field>
122             <field name="search_view_id" ref="account_analytic_analysis.view_account_analytic_account_overdue_search"/>
123             <field name="help">You will find here the contracts related to your customer projects in order to track the invoicing progress.</field>
124         </record>
125         <menuitem id="menu_invoicing_contracts" parent="menu_project_billing" sequence="4"
126             action="account_analytic_analysis.action_account_analytic_overdue"/>
127
128     </data>
129 </openerp>