This commit is contained in:
2026-03-20 13:53:10 +01:00
parent a2e0c36a3c
commit 260300681f
2 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ class Product(ModelSQL,ModelView):
__name__ = 'price.product'
price = fields.Many2One('price.price',"Price index")
product = fields.Many2One('product.product',"Product")
attribute = fields.Many2One('product.attribute',"Attribute",domain=[
attributes = fields.Many2One('product.attribute',"Attribute",domain=[
('sets', '=', Eval('attribute_set')),
],
states={

View File

@@ -1,6 +1,6 @@
<form>
<label name="product"/>
<field name="product"/>
<label name="attribute"/>
<field name="attribute"/>
<label name="attributes"/>
<field name="attributes"/>
</form>