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

(-)a/admin/columns_settings.yml (-1 / +3 lines)
Lines 2527-2533 modules: Link Here
2527
            -
2527
            -
2528
              columnname: author
2528
              columnname: author
2529
            -
2529
            -
2530
              columnname: datedue
2530
              columnname: duedate
2531
            -
2532
              columnname: checkout_branch
2531
            -
2533
            -
2532
              columnname: itemtype
2534
              columnname: itemtype
2533
            -
2535
            -
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +3 lines)
Lines 313-320 Link Here
313
                                                    <th id="title" data-colname="title" class="all anti-the">Title</th>
313
                                                    <th id="title" data-colname="title" class="all anti-the">Title</th>
314
                                                    <th id="author" data-colname="author">Author</th>
314
                                                    <th id="author" data-colname="author">Author</th>
315
                                                    <th id="checkoutdate" data-colname="checkoutdate" class="psort">Checked out on</th>
315
                                                    <th id="checkoutdate" data-colname="checkoutdate" class="psort">Checked out on</th>
316
                                                    <th id="duedate" data-colname="datedue" class="psort">Due</th>
316
                                                    <th id="duedate" data-colname="duedate" class="psort">Due</th>
317
                                                    [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
317
                                                    <th id="checkout_branch" data-colname="checkout_branch">Checkout branch</th>                 [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
318
                                                        <th data-colname="itemtype">Item type</th>
318
                                                        <th data-colname="itemtype">Item type</th>
319
                                                    [% END %]
319
                                                    [% END %]
320
                                                    [% IF ( show_barcode ) %]
320
                                                    [% IF ( show_barcode ) %]
Lines 399-405 Link Here
399
399
400
                                                            [% IF ( ISSUE.recall ) %]<br /><i>This item has been recalled. Please return by the new due date.</i>[% END %]
400
                                                            [% IF ( ISSUE.recall ) %]<br /><i>This item has been recalled. Please return by the new due date.</i>[% END %]
401
                                                        </td>
401
                                                        </td>
402
403
                                                        <td class="author">[% ISSUE.author | html %]</td>
402
                                                        <td class="author">[% ISSUE.author | html %]</td>
404
                                                        <td class="checkout_date" data-order="[% ISSUE.issuedate | html %]"> [% ISSUE.issuedate | $KohaDates as_due_date => 1 %] </td>
403
                                                        <td class="checkout_date" data-order="[% ISSUE.issuedate | html %]"> [% ISSUE.issuedate | $KohaDates as_due_date => 1 %] </td>
405
                                                        [% IF ( ISSUE.overdue ) %]
404
                                                        [% IF ( ISSUE.overdue ) %]
Lines 407-412 Link Here
407
                                                        [% ELSE %]
406
                                                        [% ELSE %]
408
                                                            <td class="date_due" data-order="[% ISSUE.date_due | html %]"> [% ISSUE.date_due | $KohaDates as_due_date => 1 %] </td>
407
                                                            <td class="date_due" data-order="[% ISSUE.date_due | html %]"> [% ISSUE.date_due | $KohaDates as_due_date => 1 %] </td>
409
                                                        [% END %]
408
                                                        [% END %]
409
                                                        <td class="checkout_branch" data-order="[% ISSUE.branchname | html %]">[% ISSUE.branchname | html %]</td>
410
                                                        [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
410
                                                        [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %]
411
                                                            <td class="itype">
411
                                                            <td class="itype">
412
                                                                [% IF ( ISSUE.imageurl && !Koha.Preference('OpacNoItemTypeImages') ) %]
412
                                                                [% IF ( ISSUE.imageurl && !Koha.Preference('OpacNoItemTypeImages') ) %]
(-)a/opac/opac-user.pl (-1 / +2 lines)
Lines 292-297 if ( $pending_checkouts->count ) { # Useless test Link Here
292
292
293
        my $biblio_object = Koha::Biblios->find( $issue->{biblionumber} );
293
        my $biblio_object = Koha::Biblios->find( $issue->{biblionumber} );
294
        $issue->{biblio_object} = $biblio_object;
294
        $issue->{biblio_object} = $biblio_object;
295
        my $library_object = Koha::Libraries->find($issue->{branchcode});
296
        $issue->{branchname} = $library_object->branchname;
295
        push @issuedat, $issue;
297
        push @issuedat, $issue;
296
        $count++;
298
        $count++;
297
299
298
- 

Return to bug 30221