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

(-)a/circ/returns.pl (-1 / +2 lines)
Lines 551-556 foreach ( sort { $a <=> $b } keys %returneditems ) { Link Here
551
        }
551
        }
552
552
553
        my $item = Koha::Items->find({ barcode => $bar_code });
553
        my $item = Koha::Items->find({ barcode => $bar_code });
554
        next unless $item; # FIXME The item has been deleted in the meantime,
555
                           # we could handle that better displaying a message in the template
554
        my $biblio = $item->biblio;
556
        my $biblio = $item->biblio;
555
        # FIXME pass $item to the template and we are done here...
557
        # FIXME pass $item to the template and we are done here...
556
        $ri{itembiblionumber}    = $biblio->biblionumber;
558
        $ri{itembiblionumber}    = $biblio->biblionumber;
557
- 

Return to bug 21168