summaryrefslogtreecommitdiff
path: root/addons/point_of_sale/views/point_of_sale_view.xml
blob: 933233bc9a6365aa9e8e4ed37deba8eb33f6b416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <!-- Top menu item -->
    <menuitem
        id="menu_point_root"
        name="Point of Sale"
        groups="group_pos_manager,group_pos_user"
        web_icon="point_of_sale,static/description/icon.png"
        sequence="20"/>

    <!-- Orders menu -->
    <menuitem id="menu_point_of_sale"
        name="Orders"
        parent="menu_point_root"
        sequence="10"/>

    <menuitem id="menu_point_of_sale_customer"
        name="Customers"
        parent="menu_point_of_sale"
        action="account.res_partner_action_customer"
        sequence="100"/>

    <!-- Reporting menu -->
    <menuitem id="menu_point_rep"
        name="Reporting"
        parent="menu_point_root"
        sequence="90"
        groups="group_pos_manager"/>

    <!-- Config menu and sub menus -->
    <menuitem id="menu_point_config_product"
        name="Configuration"
        parent="menu_point_root"
        sequence="100"
        groups="group_pos_manager"/>

    <menuitem id="pos_menu_products_configuration"
        name="Products"
        parent="menu_point_config_product"
        sequence="11"/>

</odoo>