tryton-sao 5.0.62 → 5.0.63

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 5.0.63 - 2023-05-17
3
+ ---------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 5.0.62 - 2023-05-03
3
8
  ---------------------------
4
9
  * Bug fixes (see mercurial logs for details)
@@ -13860,6 +13860,11 @@ function eval_pyson(value){
13860
13860
  Sao.i18n.BC47(Sao.i18n.getlang()), options);
13861
13861
  sum_ = (sum_ || 0).toLocaleString(
13862
13862
  Sao.i18n.BC47(Sao.i18n.getlang()), options);
13863
+ } else {
13864
+ selected_sum = (selected_sum || 0).toLocaleString(
13865
+ Sao.i18n.BC47(Sao.i18n.getlang()));
13866
+ sum_ = (sum_ || 0).toLocaleString(
13867
+ Sao.i18n.BC47(Sao.i18n.getlang()));
13863
13868
  }
13864
13869
  aggregate = selected_sum + ' / ' + sum_;
13865
13870
  }