Lines 263-268
if ($barcode) {
Link Here
|
263 |
my $item = Koha::Items->find({ barcode => $barcode }); |
263 |
my $item = Koha::Items->find({ barcode => $barcode }); |
264 |
|
264 |
|
265 |
if ( $item ) { |
265 |
if ( $item ) { |
|
|
266 |
$itemnumber = $item->itemnumber; |
266 |
# Check if we should display a checkin message, based on the the item |
267 |
# Check if we should display a checkin message, based on the the item |
267 |
# type of the checked in item |
268 |
# type of the checked in item |
268 |
my $itemtype = Koha::ItemTypes->find( $item->effective_itemtype ); |
269 |
my $itemtype = Koha::ItemTypes->find( $item->effective_itemtype ); |
269 |
- |
|
|