Browse Source

Merge 8ff068506a into ad79aa45cf

pull/1320/merge
Mario Montes 5 years ago
committed by GitHub
parent
commit
58e7999e9b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      web_export_view/static/src/js/web_export_view.js

6
web_export_view/static/src/js/web_export_view.js

@ -65,7 +65,11 @@ odoo.define('web_export_view', function (require) {
}
else {
var text = $cell.text().trim();
if ($cell.hasClass("o_list_number")) {
// Search : for hour value
if (text.search(":")) {
export_row.push(text);
}
else if ($cell.hasClass("o_list_number")) {
export_row.push(parseFloat(
text
// Remove thousands separator

Loading…
Cancel
Save