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

(-)a/circ/pendingreserves.pl (-2 / +2 lines)
Lines 104-110 if ( $run_report ) { Link Here
104
                    ORDER BY items.itemnumber SEPARATOR ', ') l_branch,
104
                    ORDER BY items.itemnumber SEPARATOR ', ') l_branch,
105
            items.holdingbranch as branch,
105
            items.holdingbranch as branch,
106
            GROUP_CONCAT(DISTINCT items.itype 
106
            GROUP_CONCAT(DISTINCT items.itype 
107
                    ORDER BY items.itemnumber SEPARATOR '<br/>') l_itype,
107
                    ORDER BY items.itemnumber SEPARATOR '|') l_itype,
108
            GROUP_CONCAT(DISTINCT items.location 
108
            GROUP_CONCAT(DISTINCT items.location 
109
                    ORDER BY items.itemnumber SEPARATOR '|') l_location,
109
                    ORDER BY items.itemnumber SEPARATOR '|') l_location,
110
            GROUP_CONCAT(DISTINCT items.itemcallnumber 
110
            GROUP_CONCAT(DISTINCT items.itemcallnumber 
Lines 177-183 if ( $run_report ) { Link Here
177
                count           => $data->{icount},
177
                count           => $data->{icount},
178
                rcount          => $data->{rcount},
178
                rcount          => $data->{rcount},
179
                pullcount       => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount},
179
                pullcount       => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount},
180
                itype           => $data->{l_itype},
180
                itypes          => [split('\|', $data->{l_itype})],
181
                locations       => [split('\|', $data->{l_location})],
181
                locations       => [split('\|', $data->{l_location})],
182
            }
182
            }
183
        );
183
        );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-2 / +5 lines)
Lines 134-140 $(document).ready(function() { Link Here
134
        <td><p>[% reserveloo.itemcallnumber %]</p></td>
134
        <td><p>[% reserveloo.itemcallnumber %]</p></td>
135
        <td><p>[% reserveloo.copyno %]</p></td>
135
        <td><p>[% reserveloo.copyno %]</p></td>
136
        <td><p>[% reserveloo.enumchron %]</p></td>
136
        <td><p>[% reserveloo.enumchron %]</p></td>
137
        <td>[% ItemTypes.GetDescription( reserveloo.itype ) %]</td>
137
        <td>
138
        [% FOREACH itype IN reserveloo.itypes %]
139
            [% ItemTypes.GetDescription( itype ) %]
140
        [% END %]
141
        </td>
138
        <td>
142
        <td>
139
        [% FOREACH loc IN reserveloo.locations %]
143
        [% FOREACH loc IN reserveloo.locations %]
140
            [% AuthorisedValues.GetByCode('LOC', loc) %]<br>
144
            [% AuthorisedValues.GetByCode('LOC', loc) %]<br>
141
- 

Return to bug 15560