mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Small fix to allow integers to be parsed correctly when a locate with a thousand separator is used.
This commit is contained in:
committed by
Pedro M. Baeza
parent
093b023bd7
commit
917d49aef8
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user