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
709 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
  3. License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). -->
  4. <odoo>
  5. <record id="ir_filters_view_form" model="ir.ui.view">
  6. <field name="name">Use domain widget</field>
  7. <field name="model">ir.filters</field>
  8. <field name="inherit_id" ref="base.ir_filters_view_form"/>
  9. <field name="arch" type="xml">
  10. <field name="domain" position="attributes">
  11. <attribute name="widget">char_domain</attribute>
  12. <attribute name="options">{'model_field': 'model_id'}</attribute>
  13. </field>
  14. </field>
  15. </record>
  16. </odoo>