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.8 KiB
69 lines
2.8 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">
|
|
<tree editable="bottom">
|
|
<field name="product_id"/>
|
|
</tree>
|
|
<form>
|
|
<field name="product_id"/>
|
|
</form>
|
|
</field>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
<div class="oe_chatter">
|
|
<field name="message_follower_ids" widget="mail_followers"
|
|
groups="base.group_user"/>
|
|
<field name="message_ids" widget="mail_thread"/>
|
|
</div>
|
|
</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">
|
|
<tree>
|
|
<field name="name"/>
|
|
<field name="website_published"/>
|
|
<field name="user_id"/>
|
|
</tree>
|
|
</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">tree,form</field>
|
|
</record>
|
|
<menuitem
|
|
id="featured_products_menu"
|
|
name="Featured Products"
|
|
parent="website_sale.menu_catalog"
|
|
action="product_featured_action"/>
|
|
</odoo>
|