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

(-)a/admin/columns_settings.yml (-1 / +3 lines)
Lines 2124-2130 modules: Link Here
2124
            -
2124
            -
2125
              columnname: author
2125
              columnname: author
2126
            -
2126
            -
2127
              columnname: datedue
2127
              columnname: duedate
2128
            -
2129
              columnname: checkout_branch
2128
            -
2130
            -
2129
              columnname: itemtype
2131
              columnname: itemtype
2130
            -
2132
            -
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-2 / +4 lines)
Lines 335-342 Link Here
335
                                                    [% IF ( JacketImages ) %]<th class="nosort">&nbsp;</th>[% END %]
335
                                                    [% IF ( JacketImages ) %]<th class="nosort">&nbsp;</th>[% END %]
336
                                                    <th id="title" data-colname="title" class="all anti-the">Title</th>
336
                                                    <th id="title" data-colname="title" class="all anti-the">Title</th>
337
                                                    <th id="author" data-colname="author">Author</th>
337
                                                    <th id="author" data-colname="author">Author</th>
338
                                                    <th id="duedate" data-colname="datedue" class="psort">Due</th>
338
                                                    <th id="duedate" data-colname="duedate" class="psort">Due</th>
339
                                                    [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
339
                                                    <th id="checkout_branch" data-colname="checkout_branch">Checkout branch</th>                 [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
340
340
                                                        <th data-colname="itemtype">Item type</th>
341
                                                        <th data-colname="itemtype">Item type</th>
341
                                                    [% END %]
342
                                                    [% END %]
342
                                                    [% IF ( show_barcode ) %]
343
                                                    [% IF ( show_barcode ) %]
Lines 427-432 Link Here
427
                                                            [% ISSUE.date_due | $KohaDates as_due_date => 1 %]
428
                                                            [% ISSUE.date_due | $KohaDates as_due_date => 1 %]
428
                                                        </td>
429
                                                        </td>
429
                                                    [% END %]
430
                                                    [% END %]
431
                                                        <td class="checkout_branch" data-order="[% ISSUE.branchname | html %]">[% ISSUE.branchname | html %]</td>
430
                                                    [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
432
                                                    [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
431
                                                        <td class="itype">
433
                                                        <td class="itype">
432
                                                            <span class="tdlabel">Item type:</span>
434
                                                            <span class="tdlabel">Item type:</span>
(-)a/opac/opac-user.pl (-1 / +2 lines)
Lines 283-288 if ( $pending_checkouts->count ) { # Useless test Link Here
283
283
284
        my $biblio_object = Koha::Biblios->find($issue->{biblionumber});
284
        my $biblio_object = Koha::Biblios->find($issue->{biblionumber});
285
        $issue->{biblio_object} = $biblio_object;
285
        $issue->{biblio_object} = $biblio_object;
286
        my $library_object = Koha::Libraries->find($issue->{branchcode});
287
        $issue->{branchname} = $library_object->branchname;
286
        push @issuedat, $issue;
288
        push @issuedat, $issue;
287
        $count++;
289
        $count++;
288
290
289
- 

Return to bug 30221