changeset bda2a0bae52e in modules/product_image_attribute:default
details: 
https://hg.tryton.org/modules/product_image_attribute?cmd=changeset&node=bda2a0bae52e
description:
        Send only the required fields when fetching a readonly view definition

        issue11134
        review380081002
diffstat:

 product.py |  6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (20 lines):

diff -r d67ddd7d1440 -r bda2a0bae52e product.py
--- a/product.py        Wed Apr 06 23:37:43 2022 +0200
+++ b/product.py        Fri Apr 08 19:07:13 2022 +0200
@@ -33,14 +33,12 @@
             ],
         states={
             'invisible': ~Eval('attribute_set') | Eval('product'),
-            },
-        depends=['attribute_set', 'product'])
+            })
     attributes_name = fields.Function(fields.Char(
             "Attributes Name",
             states={
                 'invisible': ~Eval('attribute_set'),
-                },
-            depends=['attribute_set']),
+                }),
         'on_change_with_attributes_name')
 
     attribute_set = fields.Function(

Reply via email to