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