tryton-sao 7.2.8 → 7.2.9

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.2.9 - 2024-10-18
3
+ --------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 7.2.8 - 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.2.8',
6
+ __version__: '7.2.9',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
@@ -13905,10 +13905,10 @@ var Sao = {
13905
13905
  if (previous_view.view_type == 'calendar') {
13906
13906
  previous_view.set_default_date(record, selected_date);
13907
13907
  }
13908
- this.display().done(() => {
13908
+ return this.display().then(() => {
13909
13909
  this.set_cursor(true, true);
13910
+ return record;
13910
13911
  });
13911
- return record;
13912
13912
  });
13913
13913
  });
13914
13914
  },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tryton-sao",
3
3
  "title": "sao",
4
4
  "description": "Tryton webclient",
5
- "version": "7.2.8",
5
+ "version": "7.2.9",
6
6
  "homepage": "http://www.tryton.org/",
7
7
  "author": {
8
8
  "name": "Tryton"
package/src/sao.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  /* eslint-disable no-redeclare */
5
5
  var Sao = {
6
- __version__: '7.2.8',
6
+ __version__: '7.2.9',
7
7
  };
8
8
  /* eslint-enable no-redeclare */
9
9
 
package/src/screen.js CHANGED
@@ -1544,10 +1544,10 @@
1544
1544
  if (previous_view.view_type == 'calendar') {
1545
1545
  previous_view.set_default_date(record, selected_date);
1546
1546
  }
1547
- this.display().done(() => {
1547
+ return this.display().then(() => {
1548
1548
  this.set_cursor(true, true);
1549
+ return record;
1549
1550
  });
1550
- return record;
1551
1551
  });
1552
1552
  });
1553
1553
  },