|
Lines 96-101
sub do_checkout {
Link Here
|
| 96 |
$noerror = 0; |
96 |
$noerror = 0; |
| 97 |
last; |
97 |
last; |
| 98 |
} |
98 |
} |
|
|
99 |
} elsif ( |
| 100 |
$confirmation eq 'PREVISSUE' |
| 101 |
&& ( C4::Context->preference('CheckPrevCheckout') eq "softyes" |
| 102 |
|| C4::Context->preference('CheckPrevCheckout') eq "hardyes" ) |
| 103 |
) { |
| 104 |
$self->screen_msg("This item was previously checked out by you"); |
| 105 |
last; |
| 99 |
} else { |
106 |
} else { |
| 100 |
# We've been returned a case other than those above |
107 |
# We've been returned a case other than those above |
| 101 |
$self->screen_msg("Item cannot be issued: $confirmation"); |
108 |
$self->screen_msg("Item cannot be issued: $confirmation"); |
| 102 |
- |
|
|