Lines 293-299
if ($transit && $op eq 'cud-transfer') {
Link Here
|
293 |
|
293 |
|
294 |
# actually return book and prepare item table..... |
294 |
# actually return book and prepare item table..... |
295 |
my $returnbranch; |
295 |
my $returnbranch; |
296 |
if ($barcode && $op eq 'cud-checkin') { |
296 |
if ($barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { |
297 |
$barcode = barcodedecode($barcode) if $barcode; |
297 |
$barcode = barcodedecode($barcode) if $barcode; |
298 |
my $item = Koha::Items->find({ barcode => $barcode }); |
298 |
my $item = Koha::Items->find({ barcode => $barcode }); |
299 |
|
299 |
|
300 |
- |
|
|