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 CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ Version 6.0.65 - 2025-09-15
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 6.0.64 - 2025-08-01
3
8
  ---------------------------
4
9
  * Bug fixes (see mercurial logs for details)
@@ -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.screen.current_view.el
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.screen.current_view.el
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];