tryton-sao 6.0.46 → 6.0.48

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,14 @@
1
1
 
2
+ Version 6.0.48 - 2024-10-18
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
7
+ Version 6.0.47 - 2024-09-16
8
+ ---------------------------
9
+ * Bug fixes (see mercurial logs for details)
10
+
11
+
2
12
  Version 6.0.46 - 2024-09-01
3
13
  ---------------------------
4
14
  * Bug fixes (see mercurial logs for details)
@@ -7936,7 +7936,9 @@ var Sao = {};
7936
7936
  id: id
7937
7937
  };
7938
7938
  for (var i in fnames_to_fetch) {
7939
- default_values[fnames_to_fetch[i]] = null;
7939
+ if (fname != 'id') {
7940
+ default_values[fnames_to_fetch[i]] = null;
7941
+ }
7940
7942
  }
7941
7943
  failed_values.push(default_values);
7942
7944
  }
@@ -13172,10 +13174,10 @@ var Sao = {};
13172
13174
  if (previous_view.view_type == 'calendar') {
13173
13175
  previous_view.set_default_date(record, selected_date);
13174
13176
  }
13175
- this.display().done(function() {
13177
+ return this.display().then(function() {
13176
13178
  this.set_cursor(true, true);
13179
+ return record;
13177
13180
  }.bind(this));
13178
- return record;
13179
13181
  }.bind(this));
13180
13182
  }.bind(this));
13181
13183
  },