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.
27 lines
1010 B
27 lines
1010 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- Products menu action-->
|
|
<record id="lunch_product_action" model="ir.actions.act_window">
|
|
<field name="name">Products</field>
|
|
<field name="res_model">lunch.product</field>
|
|
<field name="view_mode">tree,kanban,form</field>
|
|
</record>
|
|
<!-- Vendors menu action-->
|
|
<record id="lunch_supplier_action" model="ir.actions.act_window">
|
|
<field name="name">Vendors</field>
|
|
<field name="res_model">lunch.supplier</field>
|
|
<field name="view_mode">kanban,tree,form</field>
|
|
</record>
|
|
<!-- Products Menu-->
|
|
<menuitem id="lunch_product_menu"
|
|
name="Products"
|
|
action="lunch_product_action"
|
|
parent="food_menu"
|
|
sequence="10"/>
|
|
<!-- Vendors Menu-->
|
|
<menuitem id="lunch_supplier_menu"
|
|
name="Vendors"
|
|
action="lunch_supplier_action"
|
|
parent="food_menu"
|
|
sequence="20"/>
|
|
</odoo>
|
|
|