tryton-sao 7.0.16 → 7.0.17

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.17 - 2024-09-16
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 7.0.16 - 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.0.16',
6
+ __version__: '7.0.17',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
@@ -8342,7 +8342,9 @@ var Sao = {
8342
8342
  id: id
8343
8343
  };
8344
8344
  for (const fname of fnames_to_fetch) {
8345
- default_values[fname] = null;
8345
+ if (fname != 'id') {
8346
+ default_values[fname] = null;
8347
+ }
8346
8348
  }
8347
8349
  failed_values.push(default_values);
8348
8350
  }