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.

19 lines
522 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="view_country_form" model="ir.ui.view">
  4. <field name="name">NUTS fields</field>
  5. <field name="model">res.country</field>
  6. <field name="inherit_id" ref="base.view_country_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="/form">
  9. <group name="nuts" string="NUTS">
  10. <group>
  11. <field name="state_level"/>
  12. </group>
  13. </group>
  14. </xpath>
  15. </field>
  16. </record>
  17. </odoo>