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

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Tree view for dynamic product-->
<record id="dynamic_product_view_tree" model="ir.ui.view">
<field name="name">dynamic.product.view.tree</field>
<field name="model">dynamic.product</field>
<field name="arch" type="xml">
<tree create="false">
<field name="name" string="Name"/>
<field name="product_tmpl_ids" string="Products"
widget="many2many_tags"/>
</tree>
</field>
</record>
<!-- Form view for dynamic products-->
<record id="dynamic_product_view_form" model="ir.ui.view">
<field name="name">dynamic.product.view.form</field>
<field name="model">dynamic.product</field>
<field name="arch" type="xml">
<form create="false">
<sheet>
<group col="4">
<field name="name" string="Name"/>
<field name="product_tmpl_ids" string="Products"
widget="many2many_tags"/>
</group>
</sheet>
</form>
</field>
</record>
<!-- Action for dynamic products-->
<record id="dynamic_product_action" model="ir.actions.act_window">
<field name="name">Best Seller</field>
<field name="res_model">dynamic.product</field>
<field name="view_mode">tree,form</field>
<field name="type">ir.actions.act_window</field>
</record>
<!-- Menu-->
<menuitem id="dynamic_product_menu" name="Best Seller"
parent="website.menu_website_global_configuration"
action="dynamic_product_action"/>
</odoo>