@@ -, +, @@ --------- -- it's floody and export is default framework -- it's floody and export is the correct framework -- expected frameworks exported, and no flooding. --- C4/ImportExportFramework.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/C4/ImportExportFramework.pm +++ a/C4/ImportExportFramework.pm @@ -415,6 +415,8 @@ sub _export_table_excel $data = $hashRef->{$_->{name}}; if ($_->{type} eq 'Number' && !defined($data)) { $data = '0'; + } elsif ($_->{type} eq 'String' && !defined($data)) { + $data = q{}; } elsif ($_->{type} eq 'String' && (!$data && $data ne '0')) { $data = '#'; } --