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.
 
 
 
 
 

17 lines
741 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--Inheriting product_product model form view for adding fields-->
<record model="ir.ui.view" id="discount_limit_product">
<field name="name">product.product.view.form.inherit.discount.limit
</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='to_weight']" position="after">
<field name="pd_apply_limit" invisible="1"/>
<field name="product_discount_limit"
invisible="pd_apply_limit==False"/>
</xpath>
</field>
</record>
</odoo>