main #7

Merged
admin merged 620 commits from main into dev 2026-03-29 13:03:25 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 260300681f - Show all commits

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>