tryton-sao 7.0.38 → 7.0.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ Version 7.0.39 - 2025-11-02
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 7.0.38 - 2025-10-20
3
8
  ---------------------------
4
9
  * Bug fixes (see mercurial logs for details)
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.0.38',
6
+ __version__: '7.0.39',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
@@ -8918,7 +8918,7 @@ var Sao = {
8918
8918
  if (field.description.readonly) {
8919
8919
  continue;
8920
8920
  }
8921
- if (fname == this.group.exclude_field) {
8921
+ if ([this.group.exclude_field, this.group.parent_name].includes(fname)) {
8922
8922
  continue;
8923
8923
  }
8924
8924
  if (!field.validate(this, softvalidation, pre_validate)) {
@@ -19745,7 +19745,7 @@ function eval_pyson(value){
19745
19745
 
19746
19746
  var value = field.get_client(record);
19747
19747
  var new_key_names = Object.keys(value).filter(
19748
- e => !this.fields[e]);
19748
+ e => !this.field.keys[e]);
19749
19749
 
19750
19750
  var prm;
19751
19751
  if (!jQuery.isEmptyObject(new_key_names)) {