Lines 148-154
if ( $op eq 'show' ) {
Link Here
|
148 |
|
148 |
|
149 |
my $category_code = $attr_type->category_code; |
149 |
my $category_code = $attr_type->category_code; |
150 |
my ( $category_lib ) = map { |
150 |
my ( $category_lib ) = map { |
151 |
( defined $category_code and $attr_type->category_code eq $category_code ) ? $attr_type->description : () |
151 |
( defined $category_code and $attr_type->category_code eq $_->categorycode ) ? $_->description : () |
152 |
} @patron_categories; |
152 |
} @patron_categories; |
153 |
push @patron_attributes_codes, |
153 |
push @patron_attributes_codes, |
154 |
{ |
154 |
{ |
155 |
- |
|
|