@@ -, +, @@ are blocked at the SIPServer --- 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' && ( C4::Context->preference('CheckPrevCheckout') eq "softyes" || C4::Context->preference('CheckPrevCheckout') eq "yes" )) { + $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"); --