Browse Source

[FIX] decode html entities

pull/816/head
Holger Brunn 7 years ago
parent
commit
2f3b763f37
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 4
      web_export_view/static/src/js/web_export_view.js

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

@ -87,9 +87,9 @@ openerp.web_export_view = function (instance) {
$.each(view.visible_columns, function() {
export_row.push(
this.type != 'integer' && this.type != 'float' ?
this.format(
jQuery('<div/>').html(this.format(
record.data, {process_modifiers: false}
) : record.data[this.id].value
)).text() : record.data[this.id].value
);
})
export_rows.push(export_row);

Loading…
Cancel
Save