Lines 171-177
while ( my $c = $sth->fetchrow_hashref() ) {
Link Here
|
171 |
author => $c->{author}, |
171 |
author => $c->{author}, |
172 |
barcode => $c->{barcode}, |
172 |
barcode => $c->{barcode}, |
173 |
itemtype => $item_level_itypes ? $c->{itype} : $c->{itemtype}, |
173 |
itemtype => $item_level_itypes ? $c->{itype} : $c->{itemtype}, |
174 |
itemtype_description => $itemtype->translated_description, |
174 |
itemtype_description => $itemtype ? $itemtype->translated_description : q{}, |
175 |
location => $location, |
175 |
location => $location, |
176 |
homebranch => $c->{homebranch}, |
176 |
homebranch => $c->{homebranch}, |
177 |
itemnotes => $c->{itemnotes}, |
177 |
itemnotes => $c->{itemnotes}, |
178 |
- |
|
|