|
Lines 93-101
sub do_checkout {
Link Here
|
| 93 |
$noerror = 0; |
93 |
$noerror = 0; |
| 94 |
last; |
94 |
last; |
| 95 |
} |
95 |
} |
| 96 |
} elsif ($confirmation eq 'PREVISSUE') { |
96 |
} elsif ($confirmation eq 'PREVISSUE') { |
| 97 |
$self->screen_msg("This item was previously checked out by you"); |
97 |
$self->screen_msg("This item was previously checked out by you"); |
| 98 |
last; |
98 |
last; |
|
|
99 |
} elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) { |
| 100 |
$self->screen_msg('Item must be issued at a circulation desk'); |
| 101 |
$noerror = 0; |
| 102 |
last; |
| 99 |
} else { |
103 |
} else { |
| 100 |
# We've been returned a case other than those above |
104 |
# We've been returned a case other than those above |
| 101 |
$self->screen_msg("Item cannot be issued: $confirmation"); |
105 |
$self->screen_msg("Item cannot be issued: $confirmation"); |
| 102 |
- |
|
|