You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
660 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="view_employee_form" model="ir.ui.view">
  5. <field name="name">hr.employee.form</field>
  6. <field name="model">hr.employee</field>
  7. <field name="inherit_id" ref="hr.view_employee_form"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//group[@name='active_group']" position="before">
  10. <group string="Bonuses">
  11. <field name="default_section_id"/>
  12. <field name="personal_comission"/>
  13. <field name="team_bonus"/>
  14. <field name="company_bonus"/>
  15. </group>
  16. </xpath>
  17. </field>
  18. </record>
  19. </data>
  20. </openerp>