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 +3 -0
- package/dist/tryton-sao.js +4 -1
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/window.js +4 -1
package/CHANGELOG
CHANGED
package/dist/tryton-sao.js
CHANGED
|
@@ -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();
|