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

(-)a/circ/pendingreserves.pl (+3 lines)
Lines 200-205 my $strsth = Link Here
200
                    ORDER BY items.itemnumber SEPARATOR '|') l_enumchron,
200
                    ORDER BY items.itemnumber SEPARATOR '|') l_enumchron,
201
            GROUP_CONCAT(DISTINCT items.copynumber
201
            GROUP_CONCAT(DISTINCT items.copynumber
202
                    ORDER BY items.itemnumber SEPARATOR '|') l_copynumber,
202
                    ORDER BY items.itemnumber SEPARATOR '|') l_copynumber,
203
            GROUP_CONCAT(DISTINCT items.barcode
204
                    ORDER BY items.itemnumber SEPARATOR '|') l_barcode,
203
            biblio.title,
205
            biblio.title,
204
            biblio.copyrightdate,
206
            biblio.copyrightdate,
205
            biblioitems.publicationyear,
207
            biblioitems.publicationyear,
Lines 266-271 while ( my $data = $sth->fetchrow_hashref ) { Link Here
266
            itemcallnumber   => [split('\|', $data->{l_itemcallnumber})],
268
            itemcallnumber   => [split('\|', $data->{l_itemcallnumber})],
267
            enumchron        => [split('\|', $data->{l_enumchron})],
269
            enumchron        => [split('\|', $data->{l_enumchron})],
268
            copyno           => [split('\|', $data->{l_copynumber})],
270
            copyno           => [split('\|', $data->{l_copynumber})],
271
            barcode          => [split('\|', $data->{l_barcode})],
269
            count            => $data->{icount},
272
            count            => $data->{icount},
270
            rcount           => $data->{rcount},
273
            rcount           => $data->{rcount},
271
            pullcount        => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount},
274
            pullcount        => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-1 / +14 lines)
Lines 57-62 Link Here
57
        <th>First patron</th>
57
        <th>First patron</th>
58
        <th class="anti-the">Title</th>
58
        <th class="anti-the">Title</th>
59
        <th class="string-sort">Libraries</th>
59
        <th class="string-sort">Libraries</th>
60
        <th>Available barcodes</th>
60
        <th>Available call numbers</th>
61
        <th>Available call numbers</th>
61
        <th>Available copy numbers</th>
62
        <th>Available copy numbers</th>
62
        <th>Available enumeration</th>
63
        <th>Available enumeration</th>
Lines 102-107 Link Here
102
            [% END %]
103
            [% END %]
103
        </td>
104
        </td>
104
        <td>
105
        <td>
106
            [% IF ( reserveloo.barcode ) %]
107
            [% IF ( reserveloo.itemnumber ) %]Only[% END %]
108
                <ul>
109
                    [% FOREACH barcode IN reserveloo.barcode.first %]
110
                        <li>
111
                            [% barcode | html %]
112
                        </li>
113
                    [% END %]
114
            [% UNLESS ( reserveloo.itemnumber ) %]or any available.[% END %]
115
                </ul>
116
            [% END %]
117
        </td>
118
        <td>
105
            [% IF ( reserveloo.itemcallnumber ) %]
119
            [% IF ( reserveloo.itemcallnumber ) %]
106
                <ul>
120
                <ul>
107
                    [% FOREACH itemcallnumber IN reserveloo.itemcallnumber  %]
121
                    [% FOREACH itemcallnumber IN reserveloo.itemcallnumber  %]
108
- 

Return to bug 23485