tryton-sao 7.0.18 → 7.0.19
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/sao.js +1 -1
- package/src/screen.js +2 -2
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.19',
|
|
7
7
|
};
|
|
8
8
|
/* eslint-enable no-redeclare */
|
|
9
9
|
|
|
@@ -13725,10 +13725,10 @@ var Sao = {
|
|
|
13725
13725
|
if (previous_view.view_type == 'calendar') {
|
|
13726
13726
|
previous_view.set_default_date(record, selected_date);
|
|
13727
13727
|
}
|
|
13728
|
-
this.display().
|
|
13728
|
+
return this.display().then(() => {
|
|
13729
13729
|
this.set_cursor(true, true);
|
|
13730
|
+
return record;
|
|
13730
13731
|
});
|
|
13731
|
-
return record;
|
|
13732
13732
|
});
|
|
13733
13733
|
});
|
|
13734
13734
|
},
|