From 8ea0cc7347c33bfc68cce1a2a4e860d27c47655f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 8 Jan 2018 18:04:56 -0300 Subject: [PATCH] Bug 19936: Replace Check_userid - Update the occurrences We previously prove that the method and the subroutine were equivalent, we know update the controller calls. Test plan: - Add and update a patron with different variations of userid (automatically generated or not) - Import patrons with and without userid, as well as with existing userid --- C4/Members.pm | 12 +++++++----- members/memberentry.pl | 4 +++- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/C4/Members.pm b/C4/Members.pm index 90ebb54afe..ef82ba29b8 100644 --- a/C4/Members.pm +++ b/C4/Members.pm @@ -398,9 +398,10 @@ sub AddMember { } } + my $p = Koha::Patron->new( { userid => $data{userid} } ); # generate a proper login if none provided $data{'userid'} = Generate_Userid( $data{'borrowernumber'}, $data{'firstname'}, $data{'surname'} ) - if ( $data{'userid'} eq '' || !Check_Userid( $data{'userid'} ) ); + if ( $data{'userid'} eq '' || ! $p->has_valid_userid ); # add expiration date if it isn't already there $data{dateexpiry} ||= $category->get_expiry_date; @@ -506,7 +507,7 @@ sub Check_Userid { $borrowernumber is optional (i.e. it can contain a blank value). A value is passed when generating a new userid for an existing borrower. When a new userid is created for a new borrower, a blank value is passed to this sub. return : - new userid ($firstname.$surname if there is a $firstname, or $surname if there is no value in $firstname) plus offset (0 if the $newuid is unique, or a higher numeric value if Check_Userid finds an existing match for the $newuid in the database). + new userid ($firstname.$surname if there is a $firstname, or $surname if there is no value in $firstname) plus offset (0 if the $newuid is unique, or a higher numeric value if not unique). =cut @@ -514,16 +515,17 @@ sub Generate_Userid { my ($borrowernumber, $firstname, $surname) = @_; my $newuid; my $offset = 0; - #The script will "do" the following code and increment the $offset until Check_Userid = 1 (i.e. until $newuid comes back as unique) + my $patron = Koha::Patron->new; + #The script will "do" the following code and increment the $offset until the generated userid is unique do { $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g; $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g; $newuid = lc(($firstname)? "$firstname.$surname" : $surname); $newuid = unac_string('utf-8',$newuid); $newuid .= $offset unless $offset == 0; + $patron->userid( $newuid ); $offset++; - - } while (!Check_Userid($newuid,$borrowernumber)); + } while (! $patron->has_valid_userid ); return $newuid; } diff --git a/members/memberentry.pl b/members/memberentry.pl index 35c6ff043a..1c488fc028 100755 --- a/members/memberentry.pl +++ b/members/memberentry.pl @@ -349,7 +349,9 @@ if ($op eq 'save' || $op eq 'insert'){ # the edited values list when editing certain sub-forms. Get it straight # from the DB if absent. my $userid = $newdata{ userid } // $borrower_data->{ userid }; - unless (Check_Userid($userid,$borrowernumber)) { + my $p = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : Koha::Patron->new; + $p->userid( $userid ); + unless ( $p->has_valid_userid ) { push @errors, "ERROR_login_exist"; } -- 2.11.0