[FIX] decode html entities

This commit is contained in:
Holger Brunn
2017-11-29 09:10:06 +01:00
parent febda03e7d
commit 2f3b763f37

View File

@@ -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);