@@ -, +, @@ print --- members/summary-print.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/members/summary-print.pl +++ a/members/summary-print.pl @@ -94,7 +94,7 @@ sub build_issue_data { GetIssuingCharges( $checkout->{itemnumber}, $borrowernumber ); $itemtype = Koha::ItemTypes->find( $itemtype ); - $checkout->{itemtype_description} = $itemtype->description; #FIXME Should not it be translated_description + $checkout->{itemtype_description} = defined $itemtype ? $itemtype->description : q{}; #FIXME Should not it be translated_description $checkout->{charge} = sprintf( "%.2f", $charge ); # TODO Should be done in the template using Price --