Files
suite/hr_commission/views/product_views.xml
2022-09-29 02:06:14 +00:00

17 lines
667 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="product_template_form_view" model="ir.ui.view">
<field name="name">product.template.common.form.inherit</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='group_general']" position="inside">
<field name="can_edit_no_commission" invisible="1"/>
<field name="no_commission" attrs="{'readonly': [('can_edit_no_commission', '=', False)]}"/>
</xpath>
</field>
</record>
</odoo>