Lines 1271-1277
sub GetItemsInfo {
Link Here
|
1271 |
|
1271 |
|
1272 |
# get itemnotes authorised value if applicable |
1272 |
# get itemnotes authorised value if applicable |
1273 |
($authorised_valuecode) = C4::Koha::GetAuthValCode('items.itemnotes', $data->{frameworkcode}); |
1273 |
($authorised_valuecode) = C4::Koha::GetAuthValCode('items.itemnotes', $data->{frameworkcode}); |
1274 |
$data->{itemnotes} = C4::Koha::GetKohaAuthorisedValueLib($authorised_valuecode, $data->{itemnotes}, $opac); |
1274 |
my $itemnotes_authvalue = C4::Koha::GetKohaAuthorisedValueLib($authorised_valuecode, $data->{itemnotes}, $opac); |
|
|
1275 |
$data->{itemnotes} = $itemnotes_authvalue if ( $itemnotes_authvalue ); |
1275 |
|
1276 |
|
1276 |
# get restricted status and description if applicable |
1277 |
# get restricted status and description if applicable |
1277 |
my $restrictedstatus = $dbh->prepare( |
1278 |
my $restrictedstatus = $dbh->prepare( |
1278 |
- |
|
|