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

(-)a/C4/Circulation.pm (-3 / +2 lines)
Lines 2129-2136 sub AddReturn { Link Here
2129
    if ($item_was_lost) {
2129
    if ($item_was_lost) {
2130
        $messages->{'WasLost'} = 1;
2130
        $messages->{'WasLost'} = 1;
2131
        unless ( C4::Context->preference("BlockReturnOfLostItems") ) {
2131
        unless ( C4::Context->preference("BlockReturnOfLostItems") ) {
2132
            $messages->{'LostItemFeeRefunded'} = $updated_item->{_refunded};
2132
            $messages->{'LostItemFeeRefunded'} = 1 if $updated_item->{_refunded};
2133
            $messages->{'LostItemFeeRestored'} = $updated_item->{_restored};
2133
            $messages->{'LostItemFeeRestored'} = 1 if $updated_item->{_restored};
2134
2134
2135
            if ( $updated_item->{_charge} ) {
2135
            if ( $updated_item->{_charge} ) {
2136
                $issue //= Koha::Old::Checkouts->search(
2136
                $issue //= Koha::Old::Checkouts->search(
2137
- 

Return to bug 29221