@@ -, +, @@ print --- members/summary-print.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/members/summary-print.pl +++ a/members/summary-print.pl @@ -94,7 +94,9 @@ 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 + if (defined $itemtype) { + $checkout->{itemtype_description} = $itemtype->description; #FIXME Should not it be translated_description + } $checkout->{charge} = sprintf( "%.2f", $charge ); # TODO Should be done in the template using Price --