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 +5 -0
- package/dist/tryton-sao.js +4 -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.2.
|
|
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
|
-
|
|
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
package/src/model.js
CHANGED