diff --git a/modules/purchase/view/purchase_line_form.xml b/modules/purchase/view/purchase_line_form.xml
index 14df78f..d7e47ac 100755
--- a/modules/purchase/view/purchase_line_form.xml
+++ b/modules/purchase/view/purchase_line_form.xml
@@ -16,8 +16,8 @@ this repository contains the full copyright notices and license terms. -->
-
-
+
+
diff --git a/modules/purchase_trade/purchase.py b/modules/purchase_trade/purchase.py
index 0ad160c..de81f5b 100755
--- a/modules/purchase_trade/purchase.py
+++ b/modules/purchase_trade/purchase.py
@@ -507,18 +507,6 @@ class Line(metaclass=PoolMeta):
'on_change_with_attributes_name'
)
- att_desc = fields.Function(fields.Char("Attributes"),'get_attributes')
-
- def get_attributes(self, name):
- if not self.attributes:
- return ''
-
- parts = []
- for attr_id, value in self.attributes.items():
- parts.append(f"{attr_id}: {value}")
-
- return ', '.join(parts)
-
@fields.depends('product')
def on_change_with_attribute_set(self, name=None):
if self.product and self.product.template: