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 +5 -0
- package/dist/tryton-sao.js +4 -2
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/model.js +3 -1
- package/src/sao.js +1 -1
package/CHANGELOG
CHANGED
package/dist/tryton-sao.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-redeclare */
|
|
5
5
|
var Sao = {
|
|
6
|
-
__version__: '7.0.
|
|
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
|
-
|
|
8345
|
+
if (fname != 'id') {
|
|
8346
|
+
default_values[fname] = null;
|
|
8347
|
+
}
|
|
8346
8348
|
}
|
|
8347
8349
|
failed_values.push(default_values);
|
|
8348
8350
|
}
|