@@ -, +, @@ --- Koha/Holding.pm | 4 ++++ 1 file changed, 4 insertions(+) --- a/Koha/Holding.pm +++ a/Koha/Holding.pm @@ -329,6 +329,10 @@ sub marc_to_koha_fields { } $result->{$column} = scalar(@values) ? join(' | ', @values) : undef; } + + # convert suppress field to boolean + $result->{'suppress'} = $result->{'suppress'} ? 1 : 0; + return $result; } --