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

(-)a/circ/pendingreserves.pl (+3 lines)
Lines 197-202 my $strsth = Link Here
197
                    ORDER BY items.itemnumber SEPARATOR '|') l_enumchron,
197
                    ORDER BY items.itemnumber SEPARATOR '|') l_enumchron,
198
            GROUP_CONCAT(DISTINCT items.copynumber
198
            GROUP_CONCAT(DISTINCT items.copynumber
199
                    ORDER BY items.itemnumber SEPARATOR '|') l_copynumber,
199
                    ORDER BY items.itemnumber SEPARATOR '|') l_copynumber,
200
            GROUP_CONCAT(DISTINCT items.barcode
201
                    ORDER BY items.itemnumber SEPARATOR '|') l_barcode,
200
            biblio.title,
202
            biblio.title,
201
            biblio.subtitle,
203
            biblio.subtitle,
202
            biblio.medium,
204
            biblio.medium,
Lines 259-264 while ( my $data = $sth->fetchrow_hashref ) { Link Here
259
            itemcallnumber  => [split('\|', $data->{l_itemcallnumber})],
261
            itemcallnumber  => [split('\|', $data->{l_itemcallnumber})],
260
            enumchron       => [split('\|', $data->{l_enumchron})],
262
            enumchron       => [split('\|', $data->{l_enumchron})],
261
            copyno          => [split('\|', $data->{l_copynumber})],
263
            copyno          => [split('\|', $data->{l_copynumber})],
264
            barcode         => [split('\|', $data->{l_barcode})],
262
            count           => $data->{icount},
265
            count           => $data->{icount},
263
            rcount          => $data->{rcount},
266
            rcount          => $data->{rcount},
264
            pullcount       => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount},
267
            pullcount       => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-1 / +13 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 100-105 Link Here
100
            [% END %]
101
            [% END %]
101
        </td>
102
        </td>
102
        <td>
103
        <td>
104
            [% IF ( reserveloo.barcode ) %]
105
            [% IF ( reserveloo.itemnumber ) %]Only[% END %]
106
                <ul>
107
                    [% FOREACH barcode IN reserveloo.barcode  %]
108
                        <li>
109
                            [% barcode | html %]
110
                        </li>
111
                    [% END %]
112
                </ul>
113
            [% END %]
114
        </td>
115
        <td>
103
            [% IF ( reserveloo.itemcallnumber ) %]
116
            [% IF ( reserveloo.itemcallnumber ) %]
104
                <ul>
117
                <ul>
105
                    [% FOREACH itemcallnumber IN reserveloo.itemcallnumber  %]
118
                    [% FOREACH itemcallnumber IN reserveloo.itemcallnumber  %]
106
- 

Return to bug 23485