tryton-sao 7.2.6 → 7.2.7

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.2.7 - 2024-09-16
3
+ --------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 7.2.6 - 2024-09-01
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.2.6',
6
+ __version__: '7.2.7',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
@@ -8463,7 +8463,9 @@ var Sao = {
8463
8463
  id: id
8464
8464
  };
8465
8465
  for (const fname of fnames_to_fetch) {
8466
- default_values[fname] = null;
8466
+ if (fname != 'id') {
8467
+ default_values[fname] = null;
8468
+ }
8467
8469
  }
8468
8470
  failed_values.push(default_values);
8469
8471
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tryton-sao",
3
3
  "title": "sao",
4
4
  "description": "Tryton webclient",
5
- "version": "7.2.6",
5
+ "version": "7.2.7",
6
6
  "homepage": "http://www.tryton.org/",
7
7
  "author": {
8
8
  "name": "Tryton"
package/src/model.js CHANGED
@@ -825,7 +825,9 @@
825
825
  id: id
826
826
  };
827
827
  for (const fname of fnames_to_fetch) {
828
- default_values[fname] = null;
828
+ if (fname != 'id') {
829
+ default_values[fname] = null;
830
+ }
829
831
  }
830
832
  failed_values.push(default_values);
831
833
  }
package/src/sao.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.2.6',
6
+ __version__: '7.2.7',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9