Lines 112-117
sub do_checkout {
Link Here
|
112 |
$self->screen_msg("This item was previously checked out by you"); |
112 |
$self->screen_msg("This item was previously checked out by you"); |
113 |
$noerror = 0 if ($prevcheckout_block_checkout); |
113 |
$noerror = 0 if ($prevcheckout_block_checkout); |
114 |
last; |
114 |
last; |
|
|
115 |
} elsif ( $confirmation eq 'CURRENTISSUE' ) { |
116 |
$self->screen_msg("This item is currently checked out by you"); |
117 |
$noerror = 0 if ($prevcheckout_block_checkout); |
118 |
last; |
115 |
} elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) { |
119 |
} elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) { |
116 |
if ($allow_additional_materials_checkout) { |
120 |
if ($allow_additional_materials_checkout) { |
117 |
my $item = Koha::Items->find( { barcode => $barcode } ); |
121 |
my $item = Koha::Items->find( { barcode => $barcode } ); |
118 |
- |
|
|