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.

32 lines
938 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. © 2014-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  5. -->
  6. <odoo>
  7. <data>
  8. <record id="view_company_form" model="ir.ui.view">
  9. <field name="name">base_phone.company.form</field>
  10. <field name="model">res.company</field>
  11. <field name="inherit_id" ref="base.view_company_form" />
  12. <field name="arch" type="xml">
  13. <group name="account_grp" position="after">
  14. <group name="phone" string="Phone">
  15. <field name="number_of_digits_to_match_from_end" />
  16. </group>
  17. </group>
  18. <field name="phone" position="attributes">
  19. <attribute name="widget">phone</attribute>
  20. </field>
  21. <field name="fax" position="attributes">
  22. <attribute name="widget">fax</attribute>
  23. </field>
  24. </field>
  25. </record>
  26. </data>
  27. </odoo>