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.
42 lines
1.7 KiB
42 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Tree views for featured product-->
|
|
<record id="featured_product_view_tree" model="ir.ui.view">
|
|
<field name="name">featured.product.view.tree</field>
|
|
<field name="model">featured.product</field>
|
|
<field name="arch" type="xml">
|
|
<tree create="false">
|
|
<field name="name" string="Name"/>
|
|
<field name="featured_products_ids" string="Featured Products"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
<!-- Form views for featured products-->
|
|
<record id="featured_product_view_form" model="ir.ui.view">
|
|
<field name="name">featured.product.view.form</field>
|
|
<field name="model">featured.product</field>
|
|
<field name="arch" type="xml">
|
|
<form create="false">
|
|
<sheet>
|
|
<group col="4">
|
|
<field name="name" string="Name"/>
|
|
<field name="featured_products_ids"
|
|
string="Featured Products"
|
|
widget="many2many_tags"/>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!-- Action for featured products-->
|
|
<record id="featured_product_action" model="ir.actions.act_window">
|
|
<field name="name">Featured Product</field>
|
|
<field name="res_model">featured.product</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
</record>
|
|
<!-- Menu-->
|
|
<menuitem id="featured_product_menu" name="Featured Products"
|
|
parent="website.menu_website_global_configuration"
|
|
action="featured_product_action"/>
|
|
</odoo>
|
|
|