CSV export is mostly used for quick inspection or reporting in other programs.
But if you have a textfield or Wysiwig field, the CSV export is useless because of the newlines etc that get exported.
in application\Espo\Services\Record.php there is a static list for attributes to skip.
and an empty
It would be great to have this available as a global preference or at the entity/attribute level, or even at runtime.
But if you have a textfield or Wysiwig field, the CSV export is useless because of the newlines etc that get exported.
in application\Espo\Services\Record.php there is a static list for attributes to skip.
PHP Code:
$fieldListToSkip = array(
'modifiedByName',
'modifiedById',
'modifiedAt',
'deleted',
);
PHP Code:
protected $exportSkipAttributeList = [];
Comment