Bugzilla – Attachment 71795 Details for
Bug 19936
Move Check_userid and Generate_Userid to Koha::Patron
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19936: Remove the subroutine Generate_Userid
Bug-19936-Remove-the-subroutine-GenerateUserid.patch (text/plain), 2.10 KB, created by
Jonathan Druart
on 2018-02-16 14:34:40 UTC
(
hide
)
Description:
Bug 19936: Remove the subroutine Generate_Userid
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2018-02-16 14:34:40 UTC
Size:
2.10 KB
patch
obsolete
>From ed1cccbdfa64e6131045a031405fc01c17b2c677 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 9 Jan 2018 10:27:34 -0300 >Subject: [PATCH] Bug 19936: Remove the subroutine Generate_Userid > >--- > C4/Members.pm | 33 --------------------------------- > 1 file changed, 33 deletions(-) > >diff --git a/C4/Members.pm b/C4/Members.pm >index d5759e908f..79c90cb717 100644 >--- a/C4/Members.pm >+++ b/C4/Members.pm >@@ -89,7 +89,6 @@ BEGIN { > #Check data > push @EXPORT, qw( > &checkuserpassword >- &Generate_Userid > &fixup_cardnumber > &checkcardnumber > ); >@@ -465,38 +464,6 @@ sub AddMember { > return $data{borrowernumber}; > } > >-=head2 Generate_Userid >- >- my $newuid = Generate_Userid($borrowernumber, $firstname, $surname); >- >- Generate a userid using the $surname and the $firstname (if there is a value in $firstname). >- >- $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 not unique). >- >-=cut >- >-sub Generate_Userid { >- my ($borrowernumber, $firstname, $surname) = @_; >- my $newuid; >- my $offset = 0; >- 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 (! $patron->has_valid_userid ); >- >- return $newuid; >-} >- > =head2 fixup_cardnumber > > Warning: The caller is responsible for locking the members table in write >-- >2.11.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 19936
:
70365
|
70366
|
70367
|
70368
|
70369
|
70370
|
70371
|
70372
|
70373
|
70374
|
71787
|
71788
|
71789
|
71790
|
71791
|
71792
|
71793
|
71794
|
71795
|
71796
|
72129
|
72130
|
72131
|
72132
|
72133
|
72134
|
72135
|
72136
|
72137
|
72138
|
72139
|
72140
|
72141
|
72142
|
72143
|
72144
|
72145
|
72146
|
72147
|
72148
|
72149
|
72150
|
72151
|
72152
|
73630
|
73631
|
73632
|
73633
|
73634
|
73635
|
73636
|
73637
|
73638
|
73639
|
73640
|
73641
|
73963
|
73964
|
73965
|
73966
|
73967
|
73968
|
73969
|
73970
|
73971
|
73972
|
73973
|
73974
|
74071
|
74072
|
74073
|
74074
|
74075
|
74076
|
74077
|
74078
|
74079
|
74080
|
74081
|
74082