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 +5 -0
- package/dist/tryton-sao.js +3 -3
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/model.js +1 -1
- package/src/sao.js +1 -1
- package/src/view/form.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.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 (
|
|
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.
|
|
19748
|
+
e => !this.field.keys[e]);
|
|
19749
19749
|
|
|
19750
19750
|
var prm;
|
|
19751
19751
|
if (!jQuery.isEmptyObject(new_key_names)) {
|