Browse Source

[web_export_view]: fixes unandled case in if else construct

pull/2/head
unknown 10 years ago
parent
commit
3979ec99db
  1. 24
      web_export_view/static/js/web_advanced_export.js

24
web_export_view/static/js/web_advanced_export.js

@ -92,20 +92,24 @@ openerp.web_export_view = function(openerp) {
$.each(rows,function(){
$row = $(this);
// find only rows with data
if($row.attr('data-id')){
export_row = [];
if($row.attr('data-id')){
export_row = [];
$.each(export_columns_keys,function(){
cell = $row.find('td[data-field="'+this+'"]').get(0);
var data_id = $( '<div>' + cell.innerHTML + '</div>');
if(data_id.find('input').get(0) != undefined) {
if(data_id.find('input').get(0).type == 'checkbox' &&
data_id.find('input').get(0).checked){
text = _t("True");
}
else {
text = _t("False");
}
}
if(data_id.find('input').get(0).type == 'checkbox'){
if(data_id.find('input').get(0).checked){
text = _t("True");
}
else {
text = _t("False");
}
}
else {
text = cell.text || cell.textContent || cell.innerHTML || "";
}
}
else{
text = cell.text || cell.textContent || cell.innerHTML || "";
}

Loading…
Cancel
Save