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.
 
 
 
 
 

35 lines
1.4 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- This XML code defines an Odoo form view for managing workspace details. -->
<record id="work_space_view_form" model="ir.ui.view">
<field name="name">work.space.view.form</field>
<field name="model">work.space</field>
<field name="arch" type="xml">
<form>
<group>
<group>
<field name="move" invisible="1"/>
<field name="workspace_id" 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"
invisible="not move"/>
</footer>
</form>
</field>
</record>
<!-- This XML code defines an Odoo action window for managing workspaces. -->
<record id="work_space_action" model="ir.actions.act_window">
<field name="name">Workspace</field>
<field name="res_model">work.space</field>
<field name="view_mode">form</field>
</record>
</odoo>