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

(-)a/circ/pendingreserves.pl (-2 lines)
Lines 124-130 if ( $run_report ) { Link Here
124
            GROUP_CONCAT(DISTINCT items.copynumber
124
            GROUP_CONCAT(DISTINCT items.copynumber
125
                    ORDER BY items.itemnumber SEPARATOR '<br/>') l_copynumber,
125
                    ORDER BY items.itemnumber SEPARATOR '<br/>') l_copynumber,
126
            items.itemnumber,
126
            items.itemnumber,
127
            notes,
128
            notificationdate,
127
            notificationdate,
129
            reminderdate,
128
            reminderdate,
130
            max(priority) as priority,
129
            max(priority) as priority,
Lines 183-189 if ( $run_report ) { Link Here
183
                itemcallnumber  => $data->{l_itemcallnumber},
182
                itemcallnumber  => $data->{l_itemcallnumber},
184
                enumchron       => $data->{l_enumchron},
183
                enumchron       => $data->{l_enumchron},
185
                copyno          => $data->{l_copynumber},
184
                copyno          => $data->{l_copynumber},
186
                notes           => $data->{notes},
187
                notificationdate=> $data->{notificationdate},
185
                notificationdate=> $data->{notificationdate},
188
                reminderdate    => $data->{reminderdate},
186
                reminderdate    => $data->{reminderdate},
189
                count           => $data->{icount},
187
                count           => $data->{icount},
(-)a/circ/reserveratios.pl (-3 / +1 lines)
Lines 99-105 my $strsth = Link Here
99
        		ORDER BY items.itemnumber SEPARATOR '<br/>') as l_location,
99
        		ORDER BY items.itemnumber SEPARATOR '<br/>') as l_location,
100
        GROUP_CONCAT(DISTINCT items.itype 
100
        GROUP_CONCAT(DISTINCT items.itype 
101
        		ORDER BY items.itemnumber SEPARATOR '<br/>') as l_itype,
101
        		ORDER BY items.itemnumber SEPARATOR '<br/>') as l_itype,
102
        notes,
102
103
        reserves.found,
103
        reserves.found,
104
        biblio.title,
104
        biblio.title,
105
        biblio.author,
105
        biblio.author,
Lines 141-147 while ( my $data = $sth->fetchrow_hashref ) { Link Here
141
            title            => $data->{title},
141
            title            => $data->{title},
142
            subtitle            => $data->{subtitle},
142
            subtitle            => $data->{subtitle},
143
            author           => $data->{author},
143
            author           => $data->{author},
144
            notes            => $data->{notes},
145
            itemnum          => $data->{itemnumber},
144
            itemnum          => $data->{itemnumber},
146
            biblionumber     => $data->{biblionumber},
145
            biblionumber     => $data->{biblionumber},
147
            holdingbranch    => $data->{holdingbranch},
146
            holdingbranch    => $data->{holdingbranch},
148
- 

Return to bug 11231