View | Details | Raw Unified | Return to bug 18251
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (+5 lines)
Lines 170-175 Link Here
170
                        </div>
170
                        </div>
171
                    [% END %]
171
                    [% END %]
172
172
173
                    [% IF ( issued ) %]
174
                    <span class="sco-alert-success"></span>
175
                    <p>Item checked out</p>
176
                    [% END %]
177
173
178
174
                    [% UNLESS ( hide_main ) %]
179
                    [% UNLESS ( hide_main ) %]
175
180
(-)a/opac/sco/sco-main.pl (-1 / +1 lines)
Lines 223-228 elsif ( $patron and $op eq "checkout" ) { Link Here
223
            if ( $hold_existed ) {
223
            if ( $hold_existed ) {
224
                my $dtf = Koha::Database->new->schema->storage->datetime_parser;
224
                my $dtf = Koha::Database->new->schema->storage->datetime_parser;
225
                $template->param(
225
                $template->param(
226
                    issued => 1,
226
                    # If the hold existed before the check in, let's confirm that the charge line exists
227
                    # If the hold existed before the check in, let's confirm that the charge line exists
227
                    # Note that this should not be needed but since we do not have proper exception handling here we do it this way
228
                    # Note that this should not be needed but since we do not have proper exception handling here we do it this way
228
                    patron_has_hold_fee => Koha::Account::Lines->search(
229
                    patron_has_hold_fee => Koha::Account::Lines->search(
229
- 

Return to bug 18251