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 |
); |