@@ -, +, @@ SIP (CheckPrevCheckout) - Do not apply this patch - Set CheckPrevCheckout to "Do", or "Unless overridden, do" - Apply this patch - Note that the checkout is now allowed, with a screen message telling --- C4/SIP/ILS/Transaction/Checkout.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/C4/SIP/ILS/Transaction/Checkout.pm +++ a/C4/SIP/ILS/Transaction/Checkout.pm @@ -96,6 +96,9 @@ sub do_checkout { $noerror = 0; last; } + } elsif ($confirmation eq 'PREVISSUE') { + $self->screen_msg("This item was previously checked out by you"); + last; } else { # We've been returned a case other than those above $self->screen_msg("Item cannot be issued: $confirmation"); --