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.

38 lines
1.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Odoo, Open Source Management Solution
  4. Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU Affero General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU Affero General Public License for more details.
  13. You should have received a copy of the GNU Affero General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. -->
  16. <openerp>
  17. <data>
  18. <record id="form" model="ir.ui.view">
  19. <field name="name">Partner gender</field>
  20. <field name="model">res.partner</field>
  21. <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/>
  22. <field name="arch" type="xml">
  23. <data>
  24. <xpath expr="//group[@name='personal_information_group']">
  25. <field name="gender"/>
  26. </xpath>
  27. </data>
  28. </field>
  29. </record>
  30. </data>
  31. </openerp>