forked from Techsystech/web
[FIX] Convert number string to number
parent
acda8a1528
commit
7c22f40bd3
|
@ -72,10 +72,18 @@ openerp.web_export_view = function(instance, m) {
|
||||||
$.each(export_columns_keys,function(){
|
$.each(export_columns_keys,function(){
|
||||||
cell = $row.find('td[data-field="'+this+'"]').get(0);
|
cell = $row.find('td[data-field="'+this+'"]').get(0);
|
||||||
text = cell.text || cell.textContent || cell.innerHTML || "";
|
text = cell.text || cell.textContent || cell.innerHTML || "";
|
||||||
|
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_row.push(text.trim());
|
||||||
|
}
|
||||||
});
|
});
|
||||||
export_rows.push(export_row);
|
export_rows.push(export_row);
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$.blockUI();
|
$.blockUI();
|
||||||
|
|
Loading…
Reference in New Issue