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.
15 lines
630 B
15 lines
630 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!-- Action to open the advanced dashboard for the fleet module -->
|
|
<record model="ir.actions.client" id="fleet_advanced_dashboard_action">
|
|
<field name="name">Dashboard</field>
|
|
<field name="tag">dashboard_action</field>
|
|
<field name="target">current</field>
|
|
</record>
|
|
<!-- Menu item to display the dashboard in the fleet module -->
|
|
<menuitem id="fleet_vehicle_dashboard_action"
|
|
name="Dashboard"
|
|
sequence="1"
|
|
action="fleet_advanced_dashboard_action"
|
|
parent="fleet.menu_root"/>
|
|
</odoo>
|
|
|