Lines 152-158
while ( my $c = $sth->fetchrow_hashref() ) {
Link Here
|
152 |
author => $c->{author}, |
152 |
author => $c->{author}, |
153 |
barcode => $c->{barcode}, |
153 |
barcode => $c->{barcode}, |
154 |
itemtype => $item_level_itypes ? $c->{itype} : $c->{itemtype}, |
154 |
itemtype => $item_level_itypes ? $c->{itype} : $c->{itemtype}, |
155 |
itemtype_description => $itemtype->{translated_description}, |
155 |
itemtype_description => $item_level_itypes ? $c->{itype_description} : $c->{itemtype_description}, |
156 |
location => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{}, |
156 |
location => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{}, |
157 |
itemnotes => $c->{itemnotes}, |
157 |
itemnotes => $c->{itemnotes}, |
158 |
itemnotes_nonpublic => $c->{itemnotes_nonpublic}, |
158 |
itemnotes_nonpublic => $c->{itemnotes_nonpublic}, |
159 |
- |
|
|