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 +5 -0
- package/dist/tryton-sao.js +3 -3
- 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.2.
|
|
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().
|
|
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
package/src/sao.js
CHANGED
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().
|
|
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
|
},
|