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
28 lines
1.0 KiB
<?xml version="1.0"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="view_relationship_graph" model="ir.ui.view">
|
|
<field name="name">create.relation.graph.form</field>
|
|
<field name="model">create.relation.graph</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Generate Relationship Graph">
|
|
<separator string="Relationship Graphs" colspan="6"/>
|
|
<button special="cancel" string="Cancel" icon="gtk-cancel"/>
|
|
<button name="get_graph" string="Create Graphs" type="object" icon="gtk-ok"/>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<act_window id="generate_relationship_graph_values"
|
|
name="Generate Relationship Graph"
|
|
src_model="ir.module.module"
|
|
res_model="create.relation.graph"
|
|
view_mode="form"
|
|
view_id="view_relationship_graph"
|
|
target="new"
|
|
key2="client_action_multi"/>
|
|
|
|
</data>
|
|
</openerp>
|