@@ -, +, @@ --- C4/SIP/ILS/Transaction/Checkout.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/C4/SIP/ILS/Transaction/Checkout.pm +++ a/C4/SIP/ILS/Transaction/Checkout.pm @@ -93,9 +93,13 @@ sub do_checkout { $noerror = 0; last; } - } elsif ($confirmation eq 'PREVISSUE') { + } elsif ($confirmation eq 'PREVISSUE') { $self->screen_msg("This item was previously checked out by you"); last; + } elsif ( $confirmation eq 'additional_materials' ) { + $self->screen_msg('Item must be issued at a circulation desk'); + $noerror = 0; + last; } else { # We've been returned a case other than those above $self->screen_msg("Item cannot be issued: $confirmation"); --