[FIX] Convert number string to number

pull/1269/head
Alex Comba 2013-06-19 11:50:37 +02:00 committed by ernesto
parent acda8a1528
commit 7c22f40bd3
1 changed files with 10 additions and 2 deletions

View File

@ -72,10 +72,18 @@ openerp.web_export_view = function(instance, m) {
$.each(export_columns_keys,function(){
cell = $row.find('td[data-field="'+this+'"]').get(0);
text = cell.text || cell.textContent || cell.innerHTML || "";
export_row.push(text.trim());
if (cell.classList.contains("oe_list_field_float")){
export_row.push(parseFloat(text));
}
else if (cell.classList.contains("oe_list_field_integer")){
export_row.push(parseInt(text));
}
else{
export_row.push(text.trim());
}
});
export_rows.push(export_row);
}
};
}
});
$.blockUI();