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

This commit is contained in:
Torvald B. Bringsvor
2015-02-07 13:56:50 +01:00
committed by Pedro M. Baeza
parent 093b023bd7
commit 917d49aef8

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());