Bug 15367: Do not display repeatable patron attributes in the batch patron modification
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 21 Dec 2015 12:24:46 +0000 (12:24 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Tue, 12 Jan 2016 15:35:50 +0000 (15:35 +0000)
The repeatable patron attributes are not correctly managed and can cause
data lost. To avoid that, the easier way is not to display them in the
batch patron modification tool.
This should be implemented, as a new enhancement.

Test plan:
Create some patron attributes, some should be repeatable.
Use the batch patron modification tool to modify patrons.
With this patch, the patron attributes marked as repeatable won't be
display anymore.

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Works as described, no koha-qa errors

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
tools/modborrowers.pl

index 71588c0..f88581f 100755 (executable)
@@ -107,6 +107,9 @@ if ( $op eq 'show' ) {
     my $patron_categories = C4::Members::GetBorrowercategoryList;
     for ( values %$patron_attribute_types ) {
         my $attr_type = C4::Members::AttributeTypes->fetch( $_->{code} );
+        # TODO Repeatable attributes are not correctly managed and can cause data lost.
+        # This should be implemented.
+        next if $attr_type->{repeatable};
         my $options = $attr_type->authorised_value_category
             ? GetAuthorisedValues( $attr_type->authorised_value_category )
             : undef;