Lines 1284-1291
sub GetItemsInfo {
Link Here
|
1284 |
|
1284 |
|
1285 |
# get restricted status and description if applicable |
1285 |
# get restricted status and description if applicable |
1286 |
if ( my $code = C4::Koha::GetAuthValCode( 'items.restricted', $data->{frameworkcode} ) ) { |
1286 |
if ( my $code = C4::Koha::GetAuthValCode( 'items.restricted', $data->{frameworkcode} ) ) { |
1287 |
$data->{restricted} = C4::Koha::GetKohaAuthorisedValueLib( $code, $data->{restricted} ); |
|
|
1288 |
$data->{restrictedopac} = C4::Koha::GetKohaAuthorisedValueLib( $code, $data->{restricted}, 1 ); |
1287 |
$data->{restrictedopac} = C4::Koha::GetKohaAuthorisedValueLib( $code, $data->{restricted}, 1 ); |
|
|
1288 |
$data->{restricted} = C4::Koha::GetKohaAuthorisedValueLib( $code, $data->{restricted} ); |
1289 |
} |
1289 |
} |
1290 |
|
1290 |
|
1291 |
# my stack procedures |
1291 |
# my stack procedures |
1292 |
- |
|
|