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.

28 lines
1.0 KiB

  1. <?xml version="1.0"?>
  2. <openerp>
  3. <data>
  4. <record id="view_relationship_graph" model="ir.ui.view">
  5. <field name="name">create.relation.graph.form</field>
  6. <field name="model">create.relation.graph</field>
  7. <field name="type">form</field>
  8. <field name="arch" type="xml">
  9. <form string="Generate Relationship Graph">
  10. <separator string="Relationship Graphs" colspan="6"/>
  11. <button special="cancel" string="Cancel" icon="gtk-cancel"/>
  12. <button name="get_graph" string="Create Graphs" type="object" icon="gtk-ok"/>
  13. </form>
  14. </field>
  15. </record>
  16. <act_window id="generate_relationship_graph_values"
  17. name="Generate Relationship Graph"
  18. src_model="ir.module.module"
  19. res_model="create.relation.graph"
  20. view_mode="form"
  21. view_id="view_relationship_graph"
  22. target="new"
  23. key2="client_action_multi"/>
  24. </data>
  25. </openerp>