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.
 
 
 
 
 

38 lines
1.3 KiB

<odoo>
<record id="free_resource_wizard_form" model="ir.ui.view">
<field name="name">free.resource.wizard</field>
<field name="model">free.resource</field>
<field name="arch" type="xml">
<form string="Free Resource" >
<group>
<group>
<field name="date_from" />
<field name="date_to" />
</group>
</group>
<newline/>
<footer>
<button name="get_free_resource" string="Free Resource" type="object" class="oe_highlight"/>
<button special="cancel" string="Ok"/>
</footer>
</form>
</field>
</record>
<record id="free_resource_wizard_action" model="ir.actions.act_window">
<field name="name">Free resource wizard</field>
<field name="res_model">free.resource</field>
<field name="view_mode">form</field>
<field name="view_id" ref="free_resource_wizard_form"/>
<field name="target">new</field>
</record>
<menuitem
action="free_resource_wizard_action"
id="free_resource_menu_wiard"
name="Resources"
parent="project.menu_project_report"
/>
</odoo>