3
0
Fork 0

Small fix to allow integers to be parsed correctly when a locate with a thousand separator is used.

9.0
Torvald B. Bringsvor 2015-02-07 13:56:50 +01:00
parent 1fcd88a982
commit f0538f43d1
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,8 @@ openerp.web_export_view = function (instance) {
}
}
else if (cell.classList.contains("oe_list_field_integer")) {
export_row.push(parseInt(text));
tmp2 = text.replace(instance.web._t.database.parameters.thousands_sep, "");
export_row.push(parseInt(tmp2));
}
else {
export_row.push(text.trim());