Skip to content

Commit

Permalink
Fixed quick export to xls
Browse files Browse the repository at this point in the history
  • Loading branch information
konadrian committed Oct 3, 2023
1 parent 7304faf commit c52849f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Vtiger/models/ExportToSpreadsheet.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function putDataIntoSpreadsheet(Vtiger_Field_Model $fieldModel, $value, i
}
break;
default:
$displayValue = $this->getDisplayValue($fieldModel, $value, $id, []) ?: '';
$displayValue = $this->getDisplayValue($fieldModel, $value, $id, []);
$this->workSheet->setCellValueExplicitByColumnAndRow($this->colNo, $this->rowNo, $displayValue, \PhpOffice\PhpSpreadsheet\Cell\DataType::TYPE_STRING);
}
++$this->colNo;
Expand Down

0 comments on commit c52849f

Please sign in to comment.