tryton-sao 6.0.19 → 6.0.20

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,3 +1,6 @@
1
+ Version 6.0.20 - 2022-07-01
2
+ * Bug fixes (see mercurial logs for details)
3
+
1
4
  Version 6.0.19 - 2022-06-15
2
5
  * Bug fixes (see mercurial logs for details)
3
6
 
@@ -25180,7 +25180,10 @@ function eval_pyson(value){
25180
25180
  val, {'s': 1, 'm': 60, 'h': 60 * 60});
25181
25181
  } else if (!isNaN(Number(val))) {
25182
25182
  val = val.toLocaleString(
25183
- Sao.i18n.BC47(Sao.i18n.getlang()));
25183
+ Sao.i18n.BC47(Sao.i18n.getlang()), {
25184
+ 'minimumFractionDigits': 0,
25185
+ 'maximumFractionDigits': 20,
25186
+ });
25184
25187
  }
25185
25188
  } else if (val.isTimeDelta) {
25186
25189
  val = val.asSeconds();