View | Details | Raw Unified | Return to bug 21842
Collapse All | Expand All

(-)a/members/summary-print.pl (-2 / +1 lines)
Lines 94-100 sub build_issue_data { Link Here
94
          GetIssuingCharges( $checkout->{itemnumber}, $borrowernumber );
94
          GetIssuingCharges( $checkout->{itemnumber}, $borrowernumber );
95
95
96
        $itemtype = Koha::ItemTypes->find( $itemtype );
96
        $itemtype = Koha::ItemTypes->find( $itemtype );
97
        $checkout->{itemtype_description} = $itemtype->description; #FIXME Should not it be translated_description
97
        $checkout->{itemtype_description} = defined $itemtype ? $itemtype->description : q{}; #FIXME Should not it be translated_description
98
98
99
        $checkout->{charge} = sprintf( "%.2f", $charge ); # TODO Should be done in the template using Price
99
        $checkout->{charge} = sprintf( "%.2f", $charge ); # TODO Should be done in the template using Price
100
100
101
- 

Return to bug 21842