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