Lines 263-279
while ( my $data = $sth->fetchrow_hashref ) {
Link Here
|
263 |
author => $data->{author}, |
263 |
author => $data->{author}, |
264 |
borrowernumber => $data->{borrowernumber}, |
264 |
borrowernumber => $data->{borrowernumber}, |
265 |
biblionumber => $data->{biblionumber}, |
265 |
biblionumber => $data->{biblionumber}, |
266 |
holdingbranches => [split('\|', $data->{l_holdingbranch})], |
266 |
holdingbranches => [split('\|', $data->{l_holdingbranch} // '')], |
267 |
branch => $data->{l_branch}, |
267 |
branch => $data->{l_branch}, |
268 |
itemcallnumber => [split('\|', $data->{l_itemcallnumber})], |
268 |
itemcallnumber => [split('\|', $data->{l_itemcallnumber} // '')], |
269 |
enumchron => [split('\|', $data->{l_enumchron})], |
269 |
enumchron => [split('\|', $data->{l_enumchron} // '')], |
270 |
copyno => [split('\|', $data->{l_copynumber})], |
270 |
copyno => [split('\|', $data->{l_copynumber} // '')], |
271 |
barcode => [split('\|', $data->{l_barcode})], |
271 |
barcode => [split('\|', $data->{l_barcode} // '')], |
272 |
count => $data->{icount}, |
272 |
count => $data->{icount}, |
273 |
rcount => $data->{rcount}, |
273 |
rcount => $data->{rcount}, |
274 |
pullcount => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount}, |
274 |
pullcount => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount}, |
275 |
itemTypes => [split('\|', $data->{l_item_type})], |
275 |
itemTypes => [split('\|', $data->{l_item_type} // '')], |
276 |
locations => [split('\|', $data->{l_location})], |
276 |
locations => [split('\|', $data->{l_location} // '')], |
277 |
reserve_id => $data->{reserve_id}, |
277 |
reserve_id => $data->{reserve_id}, |
278 |
holdingbranch => $data->{holdingbranch}, |
278 |
holdingbranch => $data->{holdingbranch}, |
279 |
homebranch => $data->{homebranch}, |
279 |
homebranch => $data->{homebranch}, |
280 |
- |
|
|