Bugzilla – Attachment 110978 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: Loop through the patron with date of birth and in categories having age limits
Bug-26311-Loop-through-the-patron-with-date-of-bir.patch (text/plain), 2.67 KB, created by
Fridolin Somers
on 2020-09-30 11:25:57 UTC
(
hide
)
Description:
Bug 26311: Loop through the patron with date of birth and in categories having age limits
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2020-09-30 11:25:57 UTC
Size:
2.67 KB
patch
obsolete
>From 33262cf7a6bae0e3eb10c352c1af39e1d245ae79 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: Loop through the patron with date of birth and in > categories having age limits > >Also added category limits in message, for example (12-18) >--- > .../search_for_data_inconsistencies.pl | 33 +++++++++++++++---- > 1 file changed, 26 insertions(+), 7 deletions(-) > >diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl >index f7a9132051..f05c7d28d8 100755 >--- a/misc/maintenance/search_for_data_inconsistencies.pl >+++ b/misc/maintenance/search_for_data_inconsistencies.pl >@@ -216,16 +216,35 @@ use C4::Biblio; > } > > { >- 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, >+ } >+ } >+ } >+ }, >+ { join => { 'categorycode' => 'borrowers' } }, >+ { 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 ) { >+ warn $aging_patron->borrowernumber; >+ 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, ); >+ new_section("Patrons with invalid age for their category"); >+ foreach my $invalid_patron (@invalid_patrons) { >+ my $category = $invalid_patron->category; >+ new_item( >+ sprintf "Patron borrowernumber=%s has an invalid age of %s for his 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.28.0
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