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
1.3 KiB
32 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Window Action to show data from document.tool wizard-->
|
|
<record id="document_tool_action" model="ir.actions.act_window">
|
|
<field name="name">Tools</field>
|
|
<field name="res_model">document.tool</field>
|
|
<field name="view_mode">form</field>
|
|
</record>
|
|
<!-- Document Tool form view -->
|
|
<record id="document_tool_view_form" model="ir.ui.view">
|
|
<field name="name">document.tool.view.form</field>
|
|
<field name="model">document.tool</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<group>
|
|
<field name="move" invisible="1"/>
|
|
<field name="workspace_ids" widget="many2many_tags"/>
|
|
<field name="doc_ids" widget="many2many_tags" invisible="1"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button class="btn btn-primary" string="Copy"
|
|
name="action_copy_docs" type="object"/>
|
|
<button class="btn btn-primary" string="Move"
|
|
name="action_move_docs"
|
|
type="object" attrs="{'invisible': [('move', '=', False)]}"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|