[MERGE]: Merged with lp:openobject-addons
[odoo/odoo.git] / addons / hr_expense / hr_expense_installer_view.xml
1 <openerp>
2   <data>
3         <record id="product_expense_installer_tree_view" model="ir.ui.view">
4             <field name="name">product.product.tree</field>
5             <field name="model">product.product</field>
6             <field name="type">tree</field>
7             <field eval="7" name="priority"/>
8             <field name="arch" type="xml">
9                 <tree editable="bottom" string="Products">
10                     <field name="name"/>
11                     <field name="standard_price"/>
12                     <field name="list_price"/>
13                     <field name="uom_id" string="UoM"/>
14                 </tree>
15             </field>
16         </record> 
17  
18         <record model="ir.actions.act_window" id="product_normal_form_view_installer">
19            <field name="name">Review Your Expenses Products</field>
20            <field name="type">ir.actions.act_window</field>
21            <field name="res_model">product.product</field>
22            <field name="view_type">form</field>
23            <field name="view_mode">tree,form</field>
24            <field name="context" eval="'{\'default_type\':\'service\',\'default_procure_method\':\'make_to_stock\',\'default_supply_method\':\'buy\',\'default_purchase_ok\':True, \'default_sale_ok\':False, \'default_hr_expense_ok\':True,\'default_categ_id\': ' + str(ref('cat_expense')) +'}'"/>
25            <field name="domain">[('hr_expense_ok','=',True)]</field>
26            <field name="view_id" ref="product_expense_installer_tree_view"/>
27            <field name="help">Define one product for each expense type allowed for an employee (travel by car, hostel, restaurant, etc). If you reimburse the employees at a fixed rate, set a cost and a unit of measure on the product. If you reimburse based on real costs, set the cost at 0.00. The user will set the real price when recording his expense sheet.</field>
28        </record>
29
30         <!-- Hr Configuration wizard -->
31         <record id="view_expenseconfig_wizard_inherit" model="ir.ui.view">
32             <field name="name">hr settings for expenses</field>
33             <field name="model">hr.config.settings</field>
34             <field name="type">form</field>
35             <field name="inherit_id" ref="hr.view_human_resources_configuration"/>
36             <field name="arch" type="xml">
37                 <field name="module_hr_expense" position="after">
38                     <group colspan="2">
39                         <button name="%(product_normal_form_view_installer)d" string="Review Expenses Products"
40                             type="action" icon="terp-accessories-archiver"/>
41                     </group>
42                 </field>
43             </field>
44         </record>
45
46     </data>
47 </openerp>