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 160-165 Link Here
160
                        </div>
160
                        </div>
161
                    [% END %]
161
                    [% END %]
162
162
163
                    [% IF ( issued ) %]
164
                    <span class="sco-alert-success"></span>
165
                    <p>Item checked out</p>
166
                    [% END %]
167
163
168
164
                    [% UNLESS ( hide_main ) %]
169
                    [% UNLESS ( hide_main ) %]
165
170
(-)a/opac/sco/sco-main.pl (-1 / +1 lines)
Lines 228-233 elsif ( $borrower and $op eq "checkout" ) { Link Here
228
            if ( $hold_existed ) {
228
            if ( $hold_existed ) {
229
                my $dtf = Koha::Database->new->schema->storage->datetime_parser;
229
                my $dtf = Koha::Database->new->schema->storage->datetime_parser;
230
                $template->param(
230
                $template->param(
231
                    issued => 1,
231
                    # If the hold existed before the check in, let's confirm that the charge line exists
232
                    # If the hold existed before the check in, let's confirm that the charge line exists
232
                    # Note that this should not be needed but since we do not have proper exception handling here we do it this way
233
                    # Note that this should not be needed but since we do not have proper exception handling here we do it this way
233
                    patron_has_hold_fee => Koha::Account::Lines->search(
234
                    patron_has_hold_fee => Koha::Account::Lines->search(
234
- 

Return to bug 18251