[FIX] now export only selected items.

This commit is contained in:
Sylvain LE GAL
2014-03-07 15:00:28 +01:00
committed by Guewen Baconnier

View File

@@ -68,7 +68,7 @@ openerp.web_export_view = function(instance, m) {
if($row.attr('data-id')){
export_row = [];
checked = $row.find('th input[type=checkbox]').attr("checked");
if (children || checked === "checked"){
if (children && checked === "checked"){
$.each(export_columns_keys,function(){
cell = $row.find('td[data-field="'+this+'"]').get(0);
text = cell.text || cell.textContent || cell.innerHTML || "";