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.
35 lines
1.5 KiB
35 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inheriting product tree view for adding fields for Hide variants-->
|
|
<record id="product_product_tree_view" model="ir.ui.view">
|
|
<field name="name">
|
|
product.product.view.tree.inherit.website_hide_variants
|
|
</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_product_tree_view"/>
|
|
<field name="arch" type="xml">
|
|
<field name="standard_price" position="after">
|
|
<field name="website_hide_variants"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
<!-- Inheriting product form view for adding fields for Hide variants-->
|
|
<record id="product_normal_form_view" model="ir.ui.view">
|
|
<field name="name">
|
|
product.product.view.form.inherit.website_hide_variants
|
|
</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@name='options']" position="inside">
|
|
<span class="d-inline-block">
|
|
<field name="website_hide_variants"/>
|
|
<label class="o_form_label" for="website_hide_variants">
|
|
Hide On Website
|
|
<sup class="btn-link p-1">?</sup>
|
|
</label>
|
|
</span>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|