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.
 
 
 
 
 

37 lines
1.5 KiB

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!-- Free resource form view-->
<record id="free_resource_view_form" model="ir.ui.view">
<field name="name">free.resource.view.form</field>
<field name="model">free.resource</field>
<field name="arch" type="xml">
<form string="Free Resource">
<group>
<group>
<field name="date_from" required="date_to != False"/>
<field name="date_to" required="date_from != False"/>
</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>
<!-- Free resource action-->
<record id="free_resource_action" model="ir.actions.act_window">
<field name="name">Free Resource</field>
<field name="res_model">free.resource</field>
<field name="view_mode">form</field>
<field name="view_id" ref="free_resource_view_form"/>
<field name="target">new</field>
</record>
<!-- Menu to show the wizard-->
<menuitem action="free_resource_action"
id="free_resource_menu_wiard"
name="Resources"
parent="project.menu_project_report"/>
</odoo>