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.
29 lines
1.3 KiB
29 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="product_product_view_tree" 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>
|
|
<record id="product_product_view_form" 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>
|