Bugzilla – Attachment 136752 Details for
Bug 26311
Add patron invalid age to search_for_data_inconsistencies.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26311: (follow-up) loop through the patron with date of birth and in categories having age limits
Bug-26311-follow-up-loop-through-the-patron-with-d.patch (text/plain), 2.84 KB, created by
David Nind
on 2022-06-29 20:48:20 UTC
(
hide
)
Description:
Bug 26311: (follow-up) loop through the patron with date of birth and in categories having age limits
Filename:
MIME Type:
Creator:
David Nind
Created:
2022-06-29 20:48:20 UTC
Size:
2.84 KB
patch
obsolete
>From 461faa98ce200f14a769c630147a744f5fe84b5a Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Wed, 30 Sep 2020 11:51:22 +0200 >Subject: [PATCH] Bug 26311: (follow-up) loop through the patron with date of > birth and in categories having age limits > >Also added category limits in message, for example (12-18) > >Check patron : >- with no date of birth >- with invalid age in category having age required >- with invalid age in category having upper age limit >- with invalid age in category having age required and upper age limit > >Signed-off-by: David Nind <david@davidnind.com> >--- > .../search_for_data_inconsistencies.pl | 30 +++++++++++++++---- > 1 file changed, 24 insertions(+), 6 deletions(-) > >diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl >index 00f5832322..f76b66fc9d 100755 >--- a/misc/maintenance/search_for_data_inconsistencies.pl >+++ b/misc/maintenance/search_for_data_inconsistencies.pl >@@ -278,16 +278,34 @@ use C4::Biblio qw( GetMarcFromKohaField ); > } > > { >- my $patrons = Koha::Patrons->search( {}, { order_by => [ 'categorycode', 'borrowernumber' ] } ); >+ my $aging_patrons = Koha::Patrons->search( >+ { >+ -not => { >+ -or => { >+ 'me.dateofbirth' => undef, >+ -and => { >+ 'categorycode.dateofbirthrequired' => undef, >+ 'categorycode.upperagelimit' => undef, >+ } >+ } >+ } >+ }, >+ { prefetch => ['categorycode'] }, >+ { order_by => [ 'me.categorycode', 'me.borrowernumber' ] }, >+ ); > my @invalid_patrons; >- while ( my $patron = $patrons->next ) { >- push @invalid_patrons, $patron unless $patron->is_valid_age; >+ while ( my $aging_patron = $aging_patrons->next ) { >+ push @invalid_patrons, $aging_patron unless $aging_patron->is_valid_age; > } > if (@invalid_patrons) { > new_section("Patrons with invalid age for category"); >- foreach my $patron (@invalid_patrons) { >- new_item( sprintf "Patron borrowernumber=%s has an invalid age of %s for their category '%s'", >- $patron->borrowernumber, $patron->get_age, $patron->category->categorycode, ); >+ foreach my $invalid_patron (@invalid_patrons) { >+ my $category = $invalid_patron->category; >+ new_item( >+ sprintf "Patron borrowernumber=%s has an invalid age of %s for their category '%s' (%s-%s)", >+ $invalid_patron->borrowernumber, $invalid_patron->get_age, $category->categorycode, >+ $category->dateofbirthrequired, $category->upperagelimit >+ ); > } > new_hint("You may change the patron's category automatically with misc/cronjobs/update_patrons_category.pl"); > } >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 26311
:
109239
|
110106
|
110130
|
110131
|
110978
|
110979
|
110980
|
110998
|
128235
|
128236
|
128237
|
131295
|
131296
|
131297
|
132978
|
136665
|
136666
|
136667
|
136668
|
136750
|
136751
|
136752
|
136753
|
137039
|
137040
|
137041
|
137042
|
137043