Holger Brunn
7 years ago
No known key found for this signature in database
GPG Key ID: 1C9760FECA3AE18
1 changed files with
2 additions and
2 deletions
-
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); |
|
|
|