Navigation Menu

Skip to content

Commit

Permalink
[FIX] product: make product_template_attribute_value tree not editable
Browse files Browse the repository at this point in the history
Purpose
=======
The product.template.attribute.values can't be edited in an inline tree view
because we need to be able to define exclusions for them in the form view.
  • Loading branch information
awa-odoo committed Mar 18, 2019
1 parent a03e623 commit 3d498ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/product/views/product_attribute_views.xml
Expand Up @@ -93,7 +93,7 @@
<field name="model">product.template.attribute.value</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="Attributes" create="0" delete="0" editable="bottom">
<tree string="Attributes" create="0" delete="0">
<field name="attribute_id"/>
<field name="name"/>
<field name="price_extra"/>
Expand Down

0 comments on commit 3d498ac

Please sign in to comment.