0324388786f77a76d33e664efa1207c256ba7dae
[odoo/odoo.git] / addons / hr_expense / hr_expense_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <!-- Expenses -->
6
7         <record id="view_expenses_line_tree" model="ir.ui.view">
8             <field name="name">hr.expense.line.tree</field>
9             <field name="model">hr.expense.line</field>
10             <field name="arch" type="xml">
11                 <tree string="Expense Lines">
12                     <field name="sequence" invisible="1"/>
13                     <field name="date_value"/>
14                     <field name="name"/>
15                     <field name="ref"/>
16                     <field domain="[('type','in',['normal','contract']), ('parent_id','!=',False)]" name="analytic_account" groups="analytic.group_analytic_accounting"/>
17                     <field name="unit_amount"/>
18                     <field name="unit_quantity"/>
19                     <field name="total_amount" sum="Total"/>
20                 </tree>
21             </field>
22         </record>
23
24         <record id="view_expenses_tree" model="ir.ui.view">
25             <field name="name">hr.expense.expense.tree</field>
26             <field name="model">hr.expense.expense</field>
27             <field name="arch" type="xml">
28                 <tree string="Expenses" colors="blue:state=='draft'">
29                     <field name="employee_id"/>
30                     <field name="department_id" invisible="1"/>
31                     <field name="date"/>
32                     <field name="user_id" invisible="1"/>
33                     <field name="name"/>
34                     <field name="currency_id" groups="base.group_multi_currency"/>
35                     <field name="amount"/>
36                     <field name="state"/>
37                 </tree>
38             </field>
39         </record>
40
41         <record id="view_editable_expenses_tree" model="ir.ui.view">
42             <field name="name">hr.expense.expense.tree</field>
43             <field name="model">hr.expense.expense</field>
44             <field name="arch" type="xml">
45                 <tree colors="blue:state == 'draft';black:state in ('confirm','accepted','done');gray:state == 'cancelled'"  string="Expenses" editable="top">
46                     <field name="employee_id"/>
47                     <field name="date"/>
48                     <field name="department_id"/>
49                     <field name="name"/>
50                     <field name="amount"/>
51                     <field name="state"/>
52                     <button name="confirm" states="draft" string="Confirm" type="workflow" icon="gtk-apply"/>
53                     <button name="refuse" states="confirm,draft,accepted" string="Refuse" type="workflow" icon="gtk-no" groups="base.group_hr_user"/>
54                 </tree>
55             </field>
56         </record>
57
58         <record id="view_expenses_form" model="ir.ui.view">
59             <field name="name">hr.expense.form</field>
60             <field name="model">hr.expense.expense</field>
61             <field eval="25" name="priority"/>
62             <field name="arch" type="xml">
63                 <form string="Expenses Sheet" version="7.0">
64                 <header>
65                     <button name="confirm" states="draft" string="Submit to Manager" type="workflow" class="oe_highlight"/>
66                     <button name="validate" states="confirm" string="Approve" type="workflow" groups="base.group_hr_user" class="oe_highlight"/>
67                     <button name="refuse" states="confirm,accepted" string="Refuse" type="workflow" groups="base.group_hr_user" />
68                     <button name="draft" states="confirm,cancelled" string="Set to Draft" type="workflow" groups="base.group_hr_user" />
69                     <button name="done" states="accepted" string="Generate Accounting Entries" type="workflow" groups="account.group_account_invoice" class="oe_highlight"/>
70                     <button name="action_view_receipt" states="done" string="Open Receipt" type="object"/>
71                     <field name="state" widget="statusbar" statusbar_visible="draft,confirm,accepted,done" statusbar_colors='{"confirm":"blue","cancelled":"red"}'/>
72                 </header>
73                 <sheet>
74                     <group>
75                         <group>
76                             <field name="employee_id" on_change="onchange_employee_id(employee_id)"/>
77                             <field name="date"/>
78                             <field name="department_id"/>
79                             <field name="company_id" groups="base.group_multi_company"/>
80                         </group>
81                         <group>
82                             <field name="name"/>
83                             <field name="user_valid" attrs="{'invisible': [('state','=','draft')]}"/>
84                             <field name="currency_id" groups="base.group_multi_currency" on_change="onchange_currency_id(currency_id, company_id)"/>
85                         </group>
86                     </group>
87                     <notebook>
88                         <page string="Description">
89                             <field name="line_ids" context="{'currency_id': currency_id, 'default_analytic_account': context.get('analytic_account')}">
90                                 <form string="Expense Lines" version="7.0">
91                                     <group>
92                                         <group>
93                                             <field name="product_id" on_change="onchange_product_id(product_id, context)" context="{'default_hr_expense_ok':1}"/>
94                                             <field name="name"/>
95                                             <field name="ref"/>
96                                             <field domain="[('type','=','normal')]" name="analytic_account" groups="analytic.group_analytic_accounting"/>
97                                         </group>
98                                         <group>
99                                             <field name="unit_amount"/>
100                                             <label for="unit_quantity"/>
101                                             <div>
102                                                 <field name="unit_quantity" class="oe_inline"/> 
103                                                 <field name="uom_id" on_change="onchange_uom(product_id, uom_id, context)" class="oe_inline"/>
104                                             </div>
105                                             <field name="date_value" />
106                                         </group>
107                                     </group>
108                                 </form>
109                                 <tree string="Expense Lines" editable="bottom">
110                                     <field name="sequence" invisible="1"/>
111                                     <field name="product_id" on_change="onchange_product_id(product_id, context)" context="{'default_hr_expense_ok':1}"/>
112                                     <field name="date_value" string="Expense Date"/>
113                                     <field name="name"/>
114                                     <field name="ref"/>
115                                     <field domain="[('type','in',['normal','contract']), ('parent_id','!=',False)]" name="analytic_account" groups="analytic.group_analytic_accounting"/>
116                                     <field name="uom_id" on_change="onchange_uom(product_id, uom_id, context)"/>
117                                     <field name="unit_amount"/>
118                                     <field name="unit_quantity"/>
119                                     <field name="total_amount" sum="Total"/>
120                                 </tree>
121                             </field>
122                             <group>
123                                 <div>
124                                     <separator string="Notes"/>
125                                     <field name="note" placeholder="Free Notes"/>
126                                 </div>
127                                 <group class="oe_subtotal_footer oe_right">
128                                     <field name="amount" widget="monetary" options="{'currency_field': 'currency_id'}" class="oe_subtotal_footer_separator"/>
129                                 </group>
130                             </group>
131                         </page>
132                         <page string="Accounting" groups="account.group_account_user">
133                             <group>
134                                 <group string="Accounting Data">
135                                     <field name="journal_id" widget="selection" domain="[('type', '=', 'purchase')]"/>
136                                     <field name="voucher_id" context="{'form_view_ref': 'account_voucher.view_purchase_receipt_form'}"/>
137                                 </group>
138                             </group>
139                         </page>
140                     </notebook>
141                 </sheet>
142                 <div class="oe_chatter">
143                     <field name="message_follower_ids" widget="mail_followers"/>
144                     <field name="message_ids" widget="mail_thread"/>
145                 </div>
146                 </form>
147             </field>
148         </record>
149
150
151         <record id="view_hr_expense_filter" model="ir.ui.view">
152             <field name="name">hr.expense.expense.filter</field>
153             <field name="model">hr.expense.expense</field>
154             <field name="arch" type="xml">
155                 <search string="Expense">
156                     <field name="name" string="Expenses"/>
157                     <field name="date"/>
158                     <filter icon="terp-document-new" domain="[('state','=','draft')]" string="New" help="New Expense"/>
159                     <filter icon="terp-camera_test" domain="[('state','=','confirm')]" string="To Approve" help="Confirmed Expenses"/>
160                     <filter icon="terp-dolar" domain="[('state','=','accepted')]" string="To Pay" help="Expenses to Invoice"/>
161                     <separator/>
162                     <filter domain="[('user_id', '=', uid)]" string="My Expenses"/>
163                     <field name="employee_id"/>
164                     <field name="department_id" string="Department" context="{'invisible_department': False}"/>
165                     <group expand="0" string="Group By...">
166                         <filter string="Employee" icon="terp-personal" domain="[]" context="{'group_by':'employee_id'}"/>
167                         <filter string="Department" icon="terp-personal+" domain="[]" context="{'group_by':'department_id'}"/>
168                         <filter string="Month" icon="terp-go-month" domain="[]" context="{'group_by':'date'}"/>
169                     </group>
170                 </search>
171             </field>
172         </record>
173
174         <record id="expense_all" model="ir.actions.act_window">
175             <field name="name">Expenses</field>
176             <field name="res_model">hr.expense.expense</field>
177             <field name="view_type">form</field>
178             <field name="search_view_id" ref="view_hr_expense_filter"/>
179             <field name="view_id" ref="view_expenses_tree"/>
180             <field name="help" type="html">
181               <p class="oe_view_nocontent_create">
182                 Click to register new expenses. 
183               </p><p>
184                 OpenERP will ensure the whole process is followed; the expense
185                 sheet is validated by manager(s), the employee is reimbursed
186                 from his expenses, some expenses must be re-invoiced to the
187                 customers.
188               </p>
189             </field>
190         </record>
191
192
193         <record id="view_product_hr_expense_form" model="ir.ui.view">
194             <field name="name">product.product.expense.form</field>
195             <field name="model">product.product</field>
196             <field name="inherit_id" ref="product.product_normal_form_view"/>
197             <field name="arch" type="xml">
198                 <div name="options" position="inside">
199                     <field name="hr_expense_ok"/>
200                     <label for="hr_expense_ok"/>
201                 </div>
202             </field>
203         </record>
204
205         <record id="hr_expense_product" model="ir.actions.act_window">
206             <field name="name">Products</field>
207             <field name="res_model">product.product</field>
208             <field name="view_type">form</field>
209             <field name="view_mode">kanban,tree,form</field>
210             <field name="context">{"default_hr_expense_ok":1}</field>
211             <field name="domain">[('hr_expense_ok','=',True)]</field>
212             <field name="search_view_id" ref="product.product_search_form_view"/>
213         </record>
214
215         <menuitem id="menu_hr_product" name="Expense Categories" parent="hr.menu_hr_configuration" action="hr_expense_product"/>
216         <menuitem id="next_id_49" name="Expenses" sequence="15" parent="hr.menu_hr_root"/>
217         <menuitem action="expense_all" id="menu_expense_all" name="Expenses" parent="next_id_49"/>
218
219     </data>
220 </openerp>