Lines 297-303
sub patron_attribute_type_list {
Link Here
|
297 |
for my $attr (@attr_types) { |
297 |
for my $attr (@attr_types) { |
298 |
next if $attr->{class} ne $class; |
298 |
next if $attr->{class} ne $class; |
299 |
my $attr_type = C4::Members::AttributeTypes->fetch($attr->{code}); |
299 |
my $attr_type = C4::Members::AttributeTypes->fetch($attr->{code}); |
300 |
$attr->{branches} = $attr_type->branches; |
300 |
$attr->{branches} = $attr_type->{branches}; |
301 |
push @items, $attr; |
301 |
push @items, $attr; |
302 |
} |
302 |
} |
303 |
my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class; |
303 |
my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class; |
304 |
- |
|
|