Bug 34505: Patron invalid age in search_for_data_inconsistencies.pl skip expired patrons
Bug 26311 added patron invalid age in search_for_data_inconsistencies.pl But this is not relevant for expired patrons, especially in child categories. Check should skip expired patrons 1) Set a non-expired patron with invalid age 2) Run misc/maintenance/search_for_data_inconsistencies.pl => Check you see the patron 3) Edit patron to be expired 4) Run misc/maintenance/search_for_data_inconsistencies.pl => Check you do not see the patron Signed-off-by: Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> [EDIT] If we do not want to test valid age for expired patrons, you should obviously test expired first. Reversing the order in the test. Putting it in the search criteria would be nicer but leads to more complicated code. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
39ea14846c
commit
c26dff61e7
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ use C4::Biblio qw( GetMarcFromKohaField );
|
|||
);
|
||||
my @invalid_patrons;
|
||||
while ( my $aging_patron = $aging_patrons->next ) {
|
||||
push @invalid_patrons, $aging_patron unless $aging_patron->is_valid_age;
|
||||
push @invalid_patrons, $aging_patron unless $aging_patron->is_expired || $aging_patron->is_valid_age;
|
||||
}
|
||||
if (@invalid_patrons) {
|
||||
new_section("Patrons with invalid age for category");
|
||||
|
|
Loading…
Reference in a new issue