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 CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ Version 7.0.19 - 2024-10-18
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 7.0.18 - 2024-10-05
3
8
  ---------------------------
4
9
  * Bug fixes (see mercurial logs for details)
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.0.18',
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().done(() => {
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
  },