Browse Source

[FIX] The float_time widget export error

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

4
web_export_view/static/src/js/web_export_view.js

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

Loading…
Cancel
Save