@@ -, +, @@ checkouts Selector: .sco-alert-success Sound:http://localhost:8081/intranet-tmpl/prog/sound/opening.ogg --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 5 +++++ opac/sco/sco-main.pl | 1 + 2 files changed, 6 insertions(+) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -160,6 +160,11 @@ [% END %] + [% IF ( issued ) %] + +

Item checked out

+ [% END %] + [% UNLESS ( hide_main ) %] --- a/opac/sco/sco-main.pl +++ a/opac/sco/sco-main.pl @@ -228,6 +228,7 @@ elsif ( $borrower and $op eq "checkout" ) { if ( $hold_existed ) { my $dtf = Koha::Database->new->schema->storage->datetime_parser; $template->param( + issued => 1, # If the hold existed before the check in, let's confirm that the charge line exists # Note that this should not be needed but since we do not have proper exception handling here we do it this way patron_has_hold_fee => Koha::Account::Lines->search( --