[FIX] Fixed wrong digits format issue for float fields when thousand separator is '.'

The function was returning the number value directly before proceeding to any formatting.
This commit is contained in:
dhr-odoo 2014-11-26 10:24:58 +05:30 committed by David Monjoie
parent cd94f10e1d
commit d0ef1b938d
1 changed files with 1 additions and 4 deletions

View File

@ -233,10 +233,7 @@ instance.web.parse_value = function (value, descriptor, value_if_empty) {
throw new Error(_.str.sprintf(_t("'%s' is not a correct integer"), value));
return tmp;
case 'float':
var tmp = Number(value);
if (!isNaN(tmp))
return tmp;
var tmp;
var tmp2 = value;
do {
tmp = tmp2;