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.
69 lines
2.6 KiB
69 lines
2.6 KiB
<odoo>
|
|
<record id="product_featured_view_form" model="ir.ui.view">
|
|
<!-- Featured products form view-->
|
|
<field name="name">product.featured.view.form</field>
|
|
<field name="model">product.featured</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<div class="oe_button_box" name="button_box">
|
|
<button class="oe_stat_button"
|
|
name="website_publish_button"
|
|
type="object" icon="fa-globe">
|
|
<field name="website_published"
|
|
widget="website_button"/>
|
|
</button>
|
|
</div>
|
|
<group>
|
|
<group>
|
|
<field name="name"/>
|
|
</group>
|
|
<group>
|
|
<field name="user_id"/>
|
|
</group>
|
|
</group>
|
|
<notebook>
|
|
<page name="featured_list_ids"
|
|
string="Featured Products">
|
|
<field name="featured_list_ids">
|
|
<list editable="bottom">
|
|
<field name="product_id"/>
|
|
</list>
|
|
<form>
|
|
<field name="product_id"/>
|
|
</form>
|
|
</field>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
<!-- Chatter -->
|
|
<chatter/>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_featured_view_tree" model="ir.ui.view">
|
|
<!-- Featured products tree view-->
|
|
<field name="name">product.featured.view.tree</field>
|
|
<field name="model">product.featured</field>
|
|
<field name="arch" type="xml">
|
|
<list>
|
|
<field name="name"/>
|
|
<field name="website_published"/>
|
|
<field name="user_id"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_featured_action" model="ir.actions.act_window">
|
|
<field name="name">Featured Products</field>
|
|
<field name="res_model">product.featured</field>
|
|
<field name="view_mode">list,form</field>
|
|
</record>
|
|
|
|
<menuitem
|
|
id="featured_products_menu"
|
|
name="Featured Products"
|
|
parent="website_sale.menu_catalog"
|
|
action="product_featured_action"/>
|
|
</odoo>
|