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

(-)a/circ/waitingreserves.pl (+1 lines)
Lines 104-109 while ( my $hold = $holds->next ) { Link Here
104
        title             => $biblio->title,
104
        title             => $biblio->title,
105
        itemnumber        => $item->itemnumber,
105
        itemnumber        => $item->itemnumber,
106
        waitingdate       => $hold->waitingdate,
106
        waitingdate       => $hold->waitingdate,
107
        reservedate       => $hold->reservedate,
107
        borrowernum       => $patron->borrowernumber,
108
        borrowernum       => $patron->borrowernumber,
108
        biblionumber      => $biblio->biblionumber,
109
        biblionumber      => $biblio->biblionumber,
109
        barcode           => $item->barcode,
110
        barcode           => $item->barcode,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-3 / +6 lines)
Lines 69-75 Link Here
69
            [% IF ( reserveloop ) %]
69
            [% IF ( reserveloop ) %]
70
               <table id="holdst">
70
               <table id="holdst">
71
               <thead><tr>
71
               <thead><tr>
72
                    <th class="title-string">Available since</th>
72
                    <th class="title-string">Waiting since</th>
73
                    <th>Reserve date</th>
73
                    <th class="anti-the">Title</th>
74
                    <th class="anti-the">Title</th>
74
                    <th>Patron</th>
75
                    <th>Patron</th>
75
                    <th>Home branch</th>
76
                    <th>Home branch</th>
Lines 82-87 Link Here
82
               <tbody>[% FOREACH reserveloo IN reserveloop %]
83
               <tbody>[% FOREACH reserveloo IN reserveloop %]
83
                <tr>
84
                <tr>
84
                    <td><span title="[% reserveloo.waitingdate %]">[% reserveloo.waitingdate | $KohaDates %]</span></td>
85
                    <td><span title="[% reserveloo.waitingdate %]">[% reserveloo.waitingdate | $KohaDates %]</span></td>
86
                    <td>[% reserveloo.reservedate | $KohaDates %]</td>
85
                    <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = reserveloo.biblionumber %]
87
                    <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = reserveloo.biblionumber %]
86
                        [% reserveloo.title |html %] [% FOREACH subtitl IN reserveloo.subtitle %] [% subtitl.subfield %][% END %]
88
                        [% reserveloo.title |html %] [% FOREACH subtitl IN reserveloo.subtitle %] [% subtitl.subfield %][% END %]
87
                        </a>
89
                        </a>
Lines 138-144 Link Here
138
140
139
               <table id="holdso">
141
               <table id="holdso">
140
               <thead><tr>
142
               <thead><tr>
141
                    <th class="title-string">Available since</th>
143
                    <th class="title-string">Waiting since</th>
144
                    <th>Reserve date</th>
142
                    <th class="anti-the">Title</th>
145
                    <th class="anti-the">Title</th>
143
                    <th>Patron</th>
146
                    <th>Patron</th>
144
                    <th>Home branch</th>
147
                    <th>Home branch</th>
Lines 151-156 Link Here
151
               <tbody>[% FOREACH overloo IN overloop %]
154
               <tbody>[% FOREACH overloo IN overloop %]
152
                    <tr>
155
                    <tr>
153
                        <td><p><span title="[% overloo.waitingdate %]">[% overloo.waitingdate | $KohaDates %]</span></p></td>
156
                        <td><p><span title="[% overloo.waitingdate %]">[% overloo.waitingdate | $KohaDates %]</span></p></td>
157
                        <td>[% overloo.reservedate | $KohaDates %]</td>
154
                        <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = overloo.biblionumber %][% overloo.title |html %]
158
                        <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = overloo.biblionumber %][% overloo.title |html %]
155
                            [% FOREACH subtitl IN overloo.subtitle %] [% subtitl.subfield %][% END %]
159
                            [% FOREACH subtitl IN overloo.subtitle %] [% subtitl.subfield %][% END %]
156
                        </a>
160
                        </a>
157
- 

Return to bug 19494