tryton-sao 7.8.2 → 7.8.3
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/COPYRIGHT +2 -2
- package/dist/tryton-sao.js +2 -1
- package/package.json +1 -1
- package/src/sao.js +1 -1
- package/src/view/tree.js +1 -0
package/CHANGELOG
CHANGED
package/COPYRIGHT
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Copyright (C) 2012-2025 Nicolas Évrard.
|
|
2
|
-
Copyright (C) 2012-
|
|
2
|
+
Copyright (C) 2012-2026 Cédric Krier.
|
|
3
3
|
Copyright (C) 2012-2014 Bertrand Chenal.
|
|
4
|
-
Copyright (C) 2012-
|
|
4
|
+
Copyright (C) 2012-2026 B2CK SPRL.
|
|
5
5
|
Copyright (C) 2019 Jitbit.
|
|
6
6
|
Copyright (C) 2013 Thomas Park
|
|
7
7
|
Copyright (C) 2020-2021 Maxime Richez
|
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.8.
|
|
6
|
+
__version__: '7.8.3',
|
|
7
7
|
};
|
|
8
8
|
/* eslint-enable no-redeclare */
|
|
9
9
|
|
|
@@ -23805,6 +23805,7 @@ function eval_pyson(value){
|
|
|
23805
23805
|
view_ids.shift();
|
|
23806
23806
|
}
|
|
23807
23807
|
cell.click(event => {
|
|
23808
|
+
event.preventDefault();
|
|
23808
23809
|
event.stopPropagation();
|
|
23809
23810
|
var params = {};
|
|
23810
23811
|
params.model = this.attributes.relation;
|
package/package.json
CHANGED
package/src/sao.js
CHANGED