tryton-sao 6.0.64 → 6.0.65
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 -4
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/view/form.js +2 -2
- package/src/window.js +2 -2
package/CHANGELOG
CHANGED
package/dist/tryton-sao.js
CHANGED
|
@@ -17475,7 +17475,7 @@ function eval_pyson(value){
|
|
|
17475
17475
|
this.screen.size_limit = size_limit;
|
|
17476
17476
|
this.screen.display();
|
|
17477
17477
|
if (this.attributes.height !== undefined) {
|
|
17478
|
-
this.
|
|
17478
|
+
this.content
|
|
17479
17479
|
.find('.treeview,.list-form').first()
|
|
17480
17480
|
.css('min-height', this.attributes.height + 'px')
|
|
17481
17481
|
.css('max-height', this.attributes.height + 'px');
|
|
@@ -17925,7 +17925,7 @@ function eval_pyson(value){
|
|
|
17925
17925
|
}
|
|
17926
17926
|
this.screen.display();
|
|
17927
17927
|
if (this.attributes.height !== undefined) {
|
|
17928
|
-
this.
|
|
17928
|
+
this.content
|
|
17929
17929
|
.find('.treeview,.list-form').first()
|
|
17930
17930
|
.css('min-height', this.attributes.height + 'px')
|
|
17931
17931
|
.css('max-height', this.attributes.height + 'px');
|
|
@@ -24902,7 +24902,7 @@ function eval_pyson(value){
|
|
|
24902
24902
|
}, this.session).then(function(count) {
|
|
24903
24903
|
return Sao.common.message.run(
|
|
24904
24904
|
Sao.i18n.ngettext('%1 record imported',
|
|
24905
|
-
'%1 records imported', count));
|
|
24905
|
+
'%1 records imported', count, count));
|
|
24906
24906
|
}).then(prm.resolve, prm.reject);
|
|
24907
24907
|
}.bind(this)
|
|
24908
24908
|
});
|
|
@@ -25415,7 +25415,7 @@ function eval_pyson(value){
|
|
|
25415
25415
|
csv, this.name + '.csv', {type: 'text/csv;charset=utf-8'});
|
|
25416
25416
|
return Sao.common.message.run(
|
|
25417
25417
|
Sao.i18n.ngettext('%1 record saved', '%1 records saved',
|
|
25418
|
-
data.length));
|
|
25418
|
+
data.length, data.length));
|
|
25419
25419
|
},
|
|
25420
25420
|
set_url: function() {
|
|
25421
25421
|
var path = [this.session.database, 'data', this.screen.model_name];
|