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.
14 lines
588 B
14 lines
588 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!-- Define the action for the POS dashboard -->
|
|
<record id="pos_dashboard_view_action" model="ir.actions.client">
|
|
<field name="name">Dashboard</field>
|
|
<field name="tag">pos_dashboard</field>
|
|
</record>
|
|
<!-- Define the menu item for the POS dashboard -->
|
|
<menuitem name="Dashboard" id="pos_dashboard_menu_action"
|
|
parent="point_of_sale.menu_point_rep"
|
|
sequence="1"
|
|
groups="point_of_sale.group_pos_manager"
|
|
action="pos_dashboard_view_action"/>
|
|
</odoo>
|
|
|