tryton-sao 6.8.1 → 6.8.2
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 +4 -3
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/rpc.js +2 -1
- package/src/sao.js +1 -1
- package/src/screen.js +1 -1
package/CHANGELOG
CHANGED
package/dist/tryton-sao.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* This file is part of Tryton. The COPYRIGHT file at the top level of
|
|
2
2
|
this repository contains the full copyright notices and license terms. */
|
|
3
3
|
var Sao = {
|
|
4
|
-
__version__: '6.8.
|
|
4
|
+
__version__: '6.8.2',
|
|
5
5
|
};
|
|
6
6
|
|
|
7
7
|
(function() {
|
|
@@ -1431,7 +1431,8 @@ var Sao = {
|
|
|
1431
1431
|
//Try to relog
|
|
1432
1432
|
Sao.Session.renew(session).then(function() {
|
|
1433
1433
|
if (async) {
|
|
1434
|
-
Sao.rpc(args, session
|
|
1434
|
+
Sao.rpc(args, session, async, process_exception)
|
|
1435
|
+
.then(dfd.resolve, dfd.reject);
|
|
1435
1436
|
} else {
|
|
1436
1437
|
dfd.resolve();
|
|
1437
1438
|
}
|
|
@@ -12241,7 +12242,7 @@ var Sao = {
|
|
|
12241
12242
|
if (!text) {
|
|
12242
12243
|
return;
|
|
12243
12244
|
}
|
|
12244
|
-
Sao.common.ask.run(Sao.i18n.gettext('Bookmark Name:', 'bookmark')
|
|
12245
|
+
Sao.common.ask.run(Sao.i18n.gettext('Bookmark Name:'), 'bookmark')
|
|
12245
12246
|
.then(name => {
|
|
12246
12247
|
if (!name) {
|
|
12247
12248
|
return;
|