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.

25 lines
717 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr>
  4. The licence is in the file __openerp__.py
  5. -->
  6. <openerp>
  7. <data>
  8. <record id="view_employee_form" model="ir.ui.view">
  9. <field name="name">hr_phone.hr_employee.form</field>
  10. <field name="model">hr.employee</field>
  11. <field name="inherit_id" ref="hr.view_employee_form"/>
  12. <field name="arch" type="xml">
  13. <field name="work_phone" position="attributes">
  14. <attribute name="widget">phone</attribute>
  15. </field>
  16. <field name="mobile_phone" position="attributes">
  17. <attribute name="widget">phone</attribute>
  18. </field>
  19. </field>
  20. </record>
  21. </data>
  22. </openerp>