Bug 25567: Fix typo categorycode vs category_code
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 21 May 2020 13:35:33 +0000 (15:35 +0200)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 22 May 2020 08:33:17 +0000 (09:33 +0100)
Well, this is actually the real root of the error!

Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

tools/modborrowers.pl

index 6c53a23..bb41637 100755 (executable)
@@ -132,7 +132,7 @@ if ( $op eq 'show' ) {
 
         my $category_code = $attr_type->category_code;
         my ( $category_lib ) = map {
-            ( defined $category_code and $attr_type->categorycode eq $category_code ) ? $attr_type->description : ()
+            ( defined $category_code and $attr_type->category_code eq $category_code ) ? $attr_type->description : ()
         } @patron_categories;
         push @patron_attributes_codes,
             {
@@ -381,7 +381,7 @@ if ( $op eq 'do' ) {
             $attribute->{attribute} = $attr_values[$i];
             my $attr_type = Koha::Patron::Attribute::Types->find($_);
             # If this borrower is not in the category of this attribute, we don't want to modify this attribute
-            ++$i and next if $attr_type->category_code and $attr_type->category_code ne $patron->category_code;
+            ++$i and next if $attr_type->category_code and $attr_type->category_code ne $patron->categorycode;
             my $valuename = "attr" . $i . "_value";
             if ( grep { $_ eq $valuename } @disabled ) {
                 # The attribute is disabled, we remove it for this borrower !