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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (+4 lines)
Lines 362-367 Link Here
362
                                                        [% IF ( itemdata_enumchron ) %]
362
                                                        [% IF ( itemdata_enumchron ) %]
363
                                                            <th>Vol info</th>
363
                                                            <th>Vol info</th>
364
                                                        [% END %]
364
                                                        [% END %]
365
                                                        <th>Notes</th>
365
                                                        <th>Information</th>
366
                                                        <th>Information</th>
366
                                                    </tr>
367
                                                    </tr>
367
368
Lines 404-409 Link Here
404
                                                            [% IF ( itemdata_enumchron ) %]
405
                                                            [% IF ( itemdata_enumchron ) %]
405
                                                                <td class="vol_info">[% itemLoo.enumchron | html %]</td>
406
                                                                <td class="vol_info">[% itemLoo.enumchron | html %]</td>
406
                                                            [% END %]
407
                                                            [% END %]
408
                                                            <td class="itemnotes">
409
                                                                [% itemLoo.itemnotes | html %]
410
                                                            </td>
407
                                                            <td class="information">
411
                                                            <td class="information">
408
                                                                [% IF ( itemLoo.dateDue ) %]
412
                                                                [% IF ( itemLoo.dateDue ) %]
409
                                                                    <span class="checkedout">Due [% itemLoo.dateDue | html %]</span>
413
                                                                    <span class="checkedout">Due [% itemLoo.dateDue | html %]</span>
(-)a/opac/opac-reserve.pl (-1 / +1 lines)
Lines 488-493 foreach my $biblioNum (@biblionumbers) { Link Here
488
        $itemLoopIter->{enumchron} = $itemInfo->{enumchron};
488
        $itemLoopIter->{enumchron} = $itemInfo->{enumchron};
489
        $itemLoopIter->{ccode} = $itemInfo->{ccode};
489
        $itemLoopIter->{ccode} = $itemInfo->{ccode};
490
        $itemLoopIter->{copynumber} = $itemInfo->{copynumber};
490
        $itemLoopIter->{copynumber} = $itemInfo->{copynumber};
491
        $itemLoopIter->{itemnotes} = $itemInfo->{itemnotes};
491
        if ($itemLevelTypes) {
492
        if ($itemLevelTypes) {
492
            $itemLoopIter->{translated_description} = $itemInfo->{translated_description};
493
            $itemLoopIter->{translated_description} = $itemInfo->{translated_description};
493
            $itemLoopIter->{itype} = $itemInfo->{itype};
494
            $itemLoopIter->{itype} = $itemInfo->{itype};
494
- 

Return to bug 29899