1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/website_sale_renting/views/product_views.xml
2024-12-10 09:04:09 +07:00

26 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="product_template_form_view">
<field name="name">product.template.form.inherit.website.sale.renting</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="website_sale.product_template_form_view"/>
<field name="arch" type="xml">
<field name="is_published" position="attributes">
<attribute name="invisible">not sale_ok and not rent_ok</attribute>
</field>
<field name="accessory_product_ids" position="attributes">
<attribute name="invisible">not sale_ok and not rent_ok</attribute>
</field>
<field name="alternative_product_ids" position="attributes">
<attribute name="invisible">not sale_ok and not rent_ok</attribute>
</field>
<group name="shop" position="attributes">
<attribute name="invisible">not sale_ok and not rent_ok</attribute>
</group>
<group name="product_template_images" position="attributes">
<attribute name="invisible">not sale_ok and not rent_ok</attribute>
</group>
</field>
</record>
</odoo>