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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (+10 lines)
Lines 198-203 Link Here
198
                                                    <th>Barcode</th>
198
                                                    <th>Barcode</th>
199
                                                [% END %]
199
                                                [% END %]
200
                                                    <th>Call no.</th>
200
                                                    <th>Call no.</th>
201
                                                    <th>Library</th>
201
                                                [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
202
                                                [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
202
                                                    <th class="nosort">Renew</th>
203
                                                    <th class="nosort">Renew</th>
203
                                                [% END %]
204
                                                [% END %]
Lines 293-298 Link Here
293
                                                    <span class="tdlabel">Call no.:</span>
294
                                                    <span class="tdlabel">Call no.:</span>
294
                                                    [% ISSUE.itemcallnumber | html %]
295
                                                    [% ISSUE.itemcallnumber | html %]
295
                                                </td>
296
                                                </td>
297
                                                    <td class="library">
298
                                                        <span class="tdlabel">Library:</span>
299
                                                        [% ISSUE.library | html %]
300
                                                    </td>
296
                                                [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
301
                                                [% IF ( OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %]
297
                                                    <td class="renew">
302
                                                    <td class="renew">
298
                                                    [% IF ISSUE.renewed %]<span class="blabel label-success">Renewed!</span><br />[% END %]
303
                                                    [% IF ISSUE.renewed %]<span class="blabel label-success">Renewed!</span><br />[% END %]
Lines 498-503 Link Here
498
                                            [% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %]
503
                                            [% UNLESS ( item_level_itypes ) %]<th>Item type</th> [% END %]
499
                                            [% IF ( show_barcode ) %]<th>Barcode</th>[% END %]
504
                                            [% IF ( show_barcode ) %]<th>Barcode</th>[% END %]
500
                                            <th>Call no.</th>
505
                                            <th>Call no.</th>
506
                                            <th>Library</th>
501
                                            <th class="title-string psort">Due</th>
507
                                            <th class="title-string psort">Due</th>
502
                                            [% IF ( OpacRenewalAllowed ) %]
508
                                            [% IF ( OpacRenewalAllowed ) %]
503
                                                <th class="nosort">Renew</th>
509
                                                <th class="nosort">Renew</th>
Lines 569-574 Link Here
569
                                                    [% OVERDUE.itemcallnumber | html %]
575
                                                    [% OVERDUE.itemcallnumber | html %]
570
                                                </td>
576
                                                </td>
571
                                                <td>
577
                                                <td>
578
                                                    <span class="tdlabel">Library:</span>
579
                                                    [% OVERDUE.library | html %]
580
                                                </td>
581
                                                <td>
572
                                                    <span title="[% OVERDUE.date_due | html %]">
582
                                                    <span title="[% OVERDUE.date_due | html %]">
573
                                                        <span class="tdlabel">Date due:</span>
583
                                                        <span class="tdlabel">Date due:</span>
574
                                                        [% OVERDUE.date_due | $KohaDates  as_due_date => 1 %]
584
                                                        [% OVERDUE.date_due | $KohaDates  as_due_date => 1 %]
(-)a/opac/opac-user.pl (-1 / +3 lines)
Lines 255-260 if ( $pending_checkouts->count ) { # Useless test Link Here
255
        }
255
        }
256
256
257
        $issue->{biblio_object} = Koha::Biblios->find($issue->{biblionumber});
257
        $issue->{biblio_object} = Koha::Biblios->find($issue->{biblionumber});
258
        my $item = Koha::Items->find($issue->{'itemnumber'});
259
        my $library = Koha::Libraries->find($item->holdingbranch);
260
        $issue->{'library'} = $library->branchname;
258
        push @issuedat, $issue;
261
        push @issuedat, $issue;
259
        $count++;
262
        $count++;
260
263
261
- 

Return to bug 24364