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.

21 lines
894 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="form_ir_filters_combine_with_existing" model="ir.ui.view">
  5. <field name="model">ir.filters.combine.with.existing</field>
  6. <field name="arch" type="xml">
  7. <form string="Combine with existing filter" version="7.0">
  8. <group>
  9. <field name="model" invisible="1" />
  10. <field name="filter_id" domain="[('model_id', '=', model)]" />
  11. </group>
  12. <footer>
  13. <button class="oe_highlight" type="object" name="button_save" string="Save" />
  14. or
  15. <button class="oe_link" special="cancel" string="Cancel" />
  16. </footer>
  17. </form>
  18. </field>
  19. </record>
  20. </data>
  21. </openerp>