Lines 110-115
if ( $op eq 'show' ) {
Link Here
|
110 |
# TODO Repeatable attributes are not correctly managed and can cause data lost. |
110 |
# TODO Repeatable attributes are not correctly managed and can cause data lost. |
111 |
# This should be implemented. |
111 |
# This should be implemented. |
112 |
next if $attr_type->{repeatable}; |
112 |
next if $attr_type->{repeatable}; |
|
|
113 |
next if $attr_type->{unique_id}; # Don't display patron attributes that must be unqiue |
113 |
my $options = $attr_type->authorised_value_category |
114 |
my $options = $attr_type->authorised_value_category |
114 |
? GetAuthorisedValues( $attr_type->authorised_value_category ) |
115 |
? GetAuthorisedValues( $attr_type->authorised_value_category ) |
115 |
: undef; |
116 |
: undef; |
116 |
- |
|
|