3 # Copyright 2000-2003 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Parts Copyright 2010 Catalyst IT
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #use warnings; FIXME - Bug 2505
26 use C4
::Dates
qw(format_date_in_iso format_date);
27 use Digest
::MD5
qw(md5_base64);
28 use String
::Random
qw( random_string );
29 use Date
::Calc qw
/Today Add_Delta_YM check_date Date_to_Days/;
30 use C4
::Log
; # logaction
36 use C4
::SQLHelper
qw(InsertInTable UpdateInTable SearchInTable);
37 use C4
::Members
::Attributes
qw(SearchIdMatchingAttribute);
38 use C4
::NewsChannels
; #get slip news
40 use DateTime
::Format
::DateParse
;
42 use Text
::Unaccent
qw( unac_string );
44 our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,$debug);
47 $VERSION = 3.07.00.049;
48 $debug = $ENV{DEBUG
} || 0;
60 &GetMemberIssuesAndFines
68 &GetFirstValidEmailAddress
69 &GetNoticeEmailAddress
82 &GetHideLostItemsPreference
85 &GetMemberAccountRecords
86 &GetBorNotifyAcctRecord
90 GetBorrowerCategorycode
91 &GetBorrowercategoryList
93 &GetBorrowersToExpunge
94 &GetBorrowersWhoHaveNeverBorrowed
95 &GetBorrowersWithIssuesHistoryOlderThan
105 GetBorrowersWithEmail
126 &ExtendMemberSubscriptionTo
144 C4::Members - Perl Module containing convenience functions for member handling
152 This module contains routines for adding, modifying and deleting members/patrons/borrowers
158 $borrowers_result_array_ref = &Search($filter,$orderby, $limit,
159 $columns_out, $search_on_fields,$searchtype);
161 Looks up patrons (borrowers) on filter. A wrapper for SearchInTable('borrowers').
163 For C<$filter>, C<$orderby>, C<$limit>, C<&columns_out>, C<&search_on_fields> and C<&searchtype>
164 refer to C4::SQLHelper:SearchInTable().
166 Special C<$filter> key '' is effectively expanded to search on surname firstname othernamescw
167 and cardnumber unless C<&search_on_fields> is defined
171 $borrowers = Search('abcd', 'cardnumber');
173 $borrowers = Search({''=>'abcd', category_type=>'I'}, 'surname');
177 sub _express_member_find
{
180 # this is used by circulation everytime a new borrowers cardnumber is scanned
181 # so we can check an exact match first, if that works return, otherwise do the rest
182 my $dbh = C4
::Context
->dbh;
183 my $query = "SELECT borrowernumber FROM borrowers WHERE cardnumber = ?";
184 if ( my $borrowernumber = $dbh->selectrow_array($query, undef, $filter) ) {
185 return( {"borrowernumber"=>$borrowernumber} );
188 my ($search_on_fields, $searchtype);
189 if ( length($filter) == 1 ) {
190 $search_on_fields = [ qw(surname) ];
191 $searchtype = 'start_with';
193 $search_on_fields = [ qw(surname firstname othernames cardnumber) ];
194 $searchtype = 'contain';
197 return (undef, $search_on_fields, $searchtype);
201 my ( $filter, $orderby, $limit, $columns_out, $search_on_fields, $searchtype ) = @_;
206 if ( my $fr = ref $filter ) {
207 if ( $fr eq "HASH" ) {
208 if ( my $search_string = $filter->{''} ) {
209 my ($member_filter, $member_search_on_fields, $member_searchtype) = _express_member_find
($search_string);
210 if ($member_filter) {
211 $filter = $member_filter;
214 $search_on_fields ||= $member_search_on_fields;
215 $searchtype ||= $member_searchtype;
220 $search_string = $filter;
224 $search_string = $filter;
225 my ($member_filter, $member_search_on_fields, $member_searchtype) = _express_member_find
($search_string);
226 if ($member_filter) {
227 $filter = $member_filter;
230 $search_on_fields ||= $member_search_on_fields;
231 $searchtype ||= $member_searchtype;
235 if ( !$found_borrower && C4
::Context
->preference('ExtendedPatronAttributes') && $search_string ) {
236 my $matching_records = C4
::Members
::Attributes
::SearchIdMatchingAttribute
($search_string);
237 if(scalar(@
$matching_records)>0) {
238 if ( my $fr = ref $filter ) {
239 if ( $fr eq "HASH" ) {
241 $filter = [ $filter ];
243 push @
$filter, { %f, "borrowernumber"=>$$matching_records };
246 push @
$filter, {"borrowernumber"=>$matching_records};
250 $filter = [ $filter ];
251 push @
$filter, {"borrowernumber"=>$matching_records};
256 # $showallbranches was not used at the time SearchMember() was mainstreamed into Search().
257 # Mentioning for the reference
259 if ( C4
::Context
->preference("IndependentBranches") ) { # && !$showallbranches){
260 if ( my $userenv = C4
::Context
->userenv ) {
261 my $branch = $userenv->{'branch'};
262 if ( ($userenv->{flags
} % 2 !=1) && $branch ){
263 if (my $fr = ref $filter) {
264 if ( $fr eq "HASH" ) {
265 $filter->{branchcode
} = $branch;
269 $_ = { '' => $_ } unless ref $_;
270 $_->{branchcode
} = $branch;
275 $filter = { '' => $filter, branchcode
=> $branch };
281 if ($found_borrower) {
282 $searchtype = "exact";
284 $searchtype ||= "start_with";
286 return SearchInTable
( "borrowers", $filter, $orderby, $limit, $columns_out, $search_on_fields, $searchtype );
289 =head2 GetMemberDetails
291 ($borrower) = &GetMemberDetails($borrowernumber, $cardnumber);
293 Looks up a patron and returns information about him or her. If
294 C<$borrowernumber> is true (nonzero), C<&GetMemberDetails> looks
295 up the borrower by number; otherwise, it looks up the borrower by card
298 C<$borrower> is a reference-to-hash whose keys are the fields of the
299 borrowers table in the Koha database. In addition,
300 C<$borrower-E<gt>{flags}> is a hash giving more detailed information
301 about the patron. Its keys act as flags :
303 if $borrower->{flags}->{LOST} {
304 # Patron's card was reported lost
307 If the state of a flag means that the patron should not be
308 allowed to borrow any more books, then it will have a C<noissues> key
311 See patronflags for more details.
313 C<$borrower-E<gt>{authflags}> is a hash giving more detailed information
314 about the top-level permissions flags set for the borrower. For example,
315 if a user has the "editcatalogue" permission,
316 C<$borrower-E<gt>{authflags}-E<gt>{editcatalogue}> will exist and have
321 sub GetMemberDetails
{
322 my ( $borrowernumber, $cardnumber ) = @_;
323 my $dbh = C4
::Context
->dbh;
326 if ($borrowernumber) {
327 $sth = $dbh->prepare("SELECT borrowers.*,category_type,categories.description,reservefee,enrolmentperiod FROM borrowers LEFT JOIN categories ON borrowers.categorycode=categories.categorycode WHERE borrowernumber=?");
328 $sth->execute($borrowernumber);
330 elsif ($cardnumber) {
331 $sth = $dbh->prepare("SELECT borrowers.*,category_type,categories.description,reservefee,enrolmentperiod FROM borrowers LEFT JOIN categories ON borrowers.categorycode=categories.categorycode WHERE cardnumber=?");
332 $sth->execute($cardnumber);
337 my $borrower = $sth->fetchrow_hashref;
338 my ($amount) = GetMemberAccountRecords
( $borrowernumber);
339 $borrower->{'amountoutstanding'} = $amount;
340 # FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount
341 my $flags = patronflags
( $borrower);
344 $sth = $dbh->prepare("select bit,flag from userflags");
346 while ( my ( $bit, $flag ) = $sth->fetchrow ) {
347 if ( $borrower->{'flags'} && $borrower->{'flags'} & 2**$bit ) {
348 $accessflagshash->{$flag} = 1;
351 $borrower->{'flags'} = $flags;
352 $borrower->{'authflags'} = $accessflagshash;
354 # For the purposes of making templates easier, we'll define a
355 # 'showname' which is the alternate form the user's first name if
356 # 'other name' is defined.
357 if ($borrower->{category_type
} eq 'I') {
358 $borrower->{'showname'} = $borrower->{'othernames'};
359 $borrower->{'showname'} .= " $borrower->{'firstname'}" if $borrower->{'firstname'};
361 $borrower->{'showname'} = $borrower->{'firstname'};
364 return ($borrower); #, $flags, $accessflagshash);
369 $flags = &patronflags($patron);
371 This function is not exported.
373 The following will be set where applicable:
374 $flags->{CHARGES}->{amount} Amount of debt
375 $flags->{CHARGES}->{noissues} Set if debt amount >$5.00 (or syspref noissuescharge)
376 $flags->{CHARGES}->{message} Message -- deprecated
378 $flags->{CREDITS}->{amount} Amount of credit
379 $flags->{CREDITS}->{message} Message -- deprecated
381 $flags->{ GNA } Patron has no valid address
382 $flags->{ GNA }->{noissues} Set for each GNA
383 $flags->{ GNA }->{message} "Borrower has no valid address" -- deprecated
385 $flags->{ LOST } Patron's card reported lost
386 $flags->{ LOST }->{noissues} Set for each LOST
387 $flags->{ LOST }->{message} Message -- deprecated
389 $flags->{DBARRED} Set if patron debarred, no access
390 $flags->{DBARRED}->{noissues} Set for each DBARRED
391 $flags->{DBARRED}->{message} Message -- deprecated
394 $flags->{ NOTES }->{message} The note itself. NOT deprecated
396 $flags->{ ODUES } Set if patron has overdue books.
397 $flags->{ ODUES }->{message} "Yes" -- deprecated
398 $flags->{ ODUES }->{itemlist} ref-to-array: list of overdue books
399 $flags->{ ODUES }->{itemlisttext} Text list of overdue items -- deprecated
401 $flags->{WAITING} Set if any of patron's reserves are available
402 $flags->{WAITING}->{message} Message -- deprecated
403 $flags->{WAITING}->{itemlist} ref-to-array: list of available items
407 =item C<$flags-E<gt>{ODUES}-E<gt>{itemlist}> is a reference-to-array listing the
408 overdue items. Its elements are references-to-hash, each describing an
409 overdue item. The keys are selected fields from the issues, biblio,
410 biblioitems, and items tables of the Koha database.
412 =item C<$flags-E<gt>{ODUES}-E<gt>{itemlisttext}> is a string giving a text listing of
413 the overdue items, one per line. Deprecated.
415 =item C<$flags-E<gt>{WAITING}-E<gt>{itemlist}> is a reference-to-array listing the
416 available items. Each element is a reference-to-hash whose keys are
417 fields from the reserves table of the Koha database.
421 All the "message" fields that include language generated in this function are deprecated,
422 because such strings belong properly in the display layer.
424 The "message" field that comes from the DB is OK.
428 # TODO: use {anonymous => hashes} instead of a dozen %flaginfo
429 # FIXME rename this function.
432 my ( $patroninformation) = @_;
433 my $dbh=C4
::Context
->dbh;
434 my ($balance, $owing) = GetMemberAccountBalance
( $patroninformation->{'borrowernumber'});
437 my $noissuescharge = C4
::Context
->preference("noissuescharge") || 5;
438 $flaginfo{'message'} = sprintf "Patron owes \$%.02f", $owing;
439 $flaginfo{'amount'} = sprintf "%.02f", $owing;
440 if ( $owing > $noissuescharge && !C4
::Context
->preference("AllowFineOverride") ) {
441 $flaginfo{'noissues'} = 1;
443 $flags{'CHARGES'} = \
%flaginfo;
445 elsif ( $balance < 0 ) {
447 $flaginfo{'message'} = sprintf "Patron has credit of \$%.02f", -$balance;
448 $flaginfo{'amount'} = sprintf "%.02f", $balance;
449 $flags{'CREDITS'} = \
%flaginfo;
451 if ( $patroninformation->{'gonenoaddress'}
452 && $patroninformation->{'gonenoaddress'} == 1 )
455 $flaginfo{'message'} = 'Borrower has no valid address.';
456 $flaginfo{'noissues'} = 1;
457 $flags{'GNA'} = \
%flaginfo;
459 if ( $patroninformation->{'lost'} && $patroninformation->{'lost'} == 1 ) {
461 $flaginfo{'message'} = 'Borrower\'s card reported lost.';
462 $flaginfo{'noissues'} = 1;
463 $flags{'LOST'} = \
%flaginfo;
465 if ( $patroninformation->{'debarred'} && check_date
( split( /-/, $patroninformation->{'debarred'} ) ) ) {
466 if ( Date_to_Days
(Date
::Calc
::Today
) < Date_to_Days
( split( /-/, $patroninformation->{'debarred'} ) ) ) {
468 $flaginfo{'debarredcomment'} = $patroninformation->{'debarredcomment'};
469 $flaginfo{'message'} = $patroninformation->{'debarredcomment'};
470 $flaginfo{'noissues'} = 1;
471 $flaginfo{'dateend'} = $patroninformation->{'debarred'};
472 $flags{'DBARRED'} = \
%flaginfo;
475 if ( $patroninformation->{'borrowernotes'}
476 && $patroninformation->{'borrowernotes'} )
479 $flaginfo{'message'} = $patroninformation->{'borrowernotes'};
480 $flags{'NOTES'} = \
%flaginfo;
482 my ( $odues, $itemsoverdue ) = C4
::Overdues
::checkoverdues
($patroninformation->{'borrowernumber'});
483 if ( $odues && $odues > 0 ) {
485 $flaginfo{'message'} = "Yes";
486 $flaginfo{'itemlist'} = $itemsoverdue;
487 foreach ( sort { $a->{'date_due'} cmp $b->{'date_due'} }
490 $flaginfo{'itemlisttext'} .=
491 "$_->{'date_due'} $_->{'barcode'} $_->{'title'} \n"; # newline is display layer
493 $flags{'ODUES'} = \
%flaginfo;
495 my @itemswaiting = C4
::Reserves
::GetReservesFromBorrowernumber
( $patroninformation->{'borrowernumber'},'W' );
496 my $nowaiting = scalar @itemswaiting;
497 if ( $nowaiting > 0 ) {
499 $flaginfo{'message'} = "Reserved items available";
500 $flaginfo{'itemlist'} = \
@itemswaiting;
501 $flags{'WAITING'} = \
%flaginfo;
509 $borrower = &GetMember(%information);
511 Retrieve the first patron record meeting on criteria listed in the
512 C<%information> hash, which should contain one or more
513 pairs of borrowers column names and values, e.g.,
515 $borrower = GetMember(borrowernumber => id);
517 C<&GetBorrower> returns a reference-to-hash whose keys are the fields of
518 the C<borrowers> table in the Koha database.
520 FIXME: GetMember() is used throughout the code as a lookup
521 on a unique key such as the borrowernumber, but this meaning is not
522 enforced in the routine itself.
528 my ( %information ) = @_;
529 if (exists $information{borrowernumber
} && !defined $information{borrowernumber
}) {
530 #passing mysql's kohaadmin?? Makes no sense as a query
533 my $dbh = C4
::Context
->dbh;
535 q{SELECT borrowers.*, categories.category_type, categories.description
537 LEFT JOIN categories on borrowers.categorycode=categories.categorycode WHERE };
540 for (keys %information ) {
548 if (defined $information{$_}) {
550 push @values, $information{$_};
553 $select .= "$_ IS NULL";
556 $debug && warn $select, " ",values %information;
557 my $sth = $dbh->prepare("$select");
558 $sth->execute(map{$information{$_}} keys %information);
559 my $data = $sth->fetchall_arrayref({});
560 #FIXME interface to this routine now allows generation of a result set
561 #so whole array should be returned but bowhere in the current code expects this
569 =head2 GetMemberRelatives
571 @borrowernumbers = GetMemberRelatives($borrowernumber);
573 C<GetMemberRelatives> returns a borrowersnumber's list of guarantor/guarantees of the member given in parameter
576 sub GetMemberRelatives
{
577 my $borrowernumber = shift;
578 my $dbh = C4
::Context
->dbh;
582 my $query = "SELECT guarantorid FROM borrowers WHERE borrowernumber=?";
583 my $sth = $dbh->prepare($query);
584 $sth->execute($borrowernumber);
585 my $data = $sth->fetchrow_arrayref();
586 push @glist, $data->[0] if $data->[0];
587 my $guarantor = $data->[0] ?
$data->[0] : undef;
590 $query = "SELECT borrowernumber FROM borrowers WHERE guarantorid=?";
591 $sth = $dbh->prepare($query);
592 $sth->execute($borrowernumber);
593 while ($data = $sth->fetchrow_arrayref()) {
594 push @glist, $data->[0];
597 # Getting sibling guarantees
599 $query = "SELECT borrowernumber FROM borrowers WHERE guarantorid=?";
600 $sth = $dbh->prepare($query);
601 $sth->execute($guarantor);
602 while ($data = $sth->fetchrow_arrayref()) {
603 push @glist, $data->[0] if ($data->[0] != $borrowernumber);
610 =head2 IsMemberBlocked
612 my ($block_status, $count) = IsMemberBlocked( $borrowernumber );
614 Returns whether a patron has overdue items that may result
615 in a block or whether the patron has active fine days
616 that would block circulation privileges.
618 C<$block_status> can have the following values:
620 1 if the patron has outstanding fine days, in which case C<$count> is the number of them
622 -1 if the patron has overdue items, in which case C<$count> is the number of them
624 0 if the patron has no overdue items or outstanding fine days, in which case C<$count> is 0
626 Outstanding fine days are checked before current overdue items
629 FIXME: this needs to be split into two functions; a potential block
630 based on the number of current overdue items could be orthogonal
631 to a block based on whether the patron has any fine days accrued.
635 sub IsMemberBlocked
{
636 my $borrowernumber = shift;
637 my $dbh = C4
::Context
->dbh;
639 my $blockeddate = CheckBorrowerDebarred
($borrowernumber);
641 return ( 1, $blockeddate ) if $blockeddate;
643 # if he have late issues
644 my $sth = $dbh->prepare(
645 "SELECT COUNT(*) as latedocs
647 WHERE borrowernumber = ?
648 AND date_due < now()"
650 $sth->execute($borrowernumber);
651 my $latedocs = $sth->fetchrow_hashref->{'latedocs'};
653 return ( -1, $latedocs ) if $latedocs > 0;
658 =head2 GetMemberIssuesAndFines
660 ($overdue_count, $issue_count, $total_fines) = &GetMemberIssuesAndFines($borrowernumber);
662 Returns aggregate data about items borrowed by the patron with the
663 given borrowernumber.
665 C<&GetMemberIssuesAndFines> returns a three-element array. C<$overdue_count> is the
666 number of overdue items the patron currently has borrowed. C<$issue_count> is the
667 number of books the patron currently has borrowed. C<$total_fines> is
668 the total fine currently due by the borrower.
673 sub GetMemberIssuesAndFines
{
674 my ( $borrowernumber ) = @_;
675 my $dbh = C4
::Context
->dbh;
676 my $query = "SELECT COUNT(*) FROM issues WHERE borrowernumber = ?";
678 $debug and warn $query."\n";
679 my $sth = $dbh->prepare($query);
680 $sth->execute($borrowernumber);
681 my $issue_count = $sth->fetchrow_arrayref->[0];
683 $sth = $dbh->prepare(
684 "SELECT COUNT(*) FROM issues
685 WHERE borrowernumber = ?
686 AND date_due < now()"
688 $sth->execute($borrowernumber);
689 my $overdue_count = $sth->fetchrow_arrayref->[0];
691 $sth = $dbh->prepare("SELECT SUM(amountoutstanding) FROM accountlines WHERE borrowernumber = ?");
692 $sth->execute($borrowernumber);
693 my $total_fines = $sth->fetchrow_arrayref->[0];
695 return ($overdue_count, $issue_count, $total_fines);
699 return @
{C4
::Context
->dbh->selectcol_arrayref("SHOW columns from borrowers")};
704 my $success = ModMember(borrowernumber => $borrowernumber,
705 [ field => value ]... );
707 Modify borrower's data. All date fields should ALREADY be in ISO format.
710 true on success, or false on failure
716 # test to know if you must update or not the borrower password
717 if (exists $data{password
}) {
718 if ($data{password
} eq '****' or $data{password
} eq '') {
719 delete $data{password
};
721 $data{password
} = md5_base64
($data{password
});
724 my $execute_success=UpdateInTable
("borrowers",\
%data);
725 if ($execute_success) { # only proceed if the update was a success
726 # ok if its an adult (type) it may have borrowers that depend on it as a guarantor
727 # so when we update information for an adult we should check for guarantees and update the relevant part
728 # of their records, ie addresses and phone numbers
729 my $borrowercategory= GetBorrowercategory
( $data{'category_type'} );
730 if ( exists $borrowercategory->{'category_type'} && $borrowercategory->{'category_type'} eq ('A' || 'S') ) {
731 # is adult check guarantees;
732 UpdateGuarantees
(%data);
734 logaction
("MEMBERS", "MODIFY", $data{'borrowernumber'}, "UPDATE (executed w/ arg: $data{'borrowernumber'})") if C4
::Context
->preference("BorrowersLog");
736 return $execute_success;
742 $borrowernumber = &AddMember(%borrower);
744 insert new borrower into table
745 Returns the borrowernumber upon success
747 Returns as undef upon any db error without further processing
754 my $dbh = C4
::Context
->dbh;
756 # generate a proper login if none provided
757 $data{'userid'} = Generate_Userid
($data{'borrowernumber'}, $data{'firstname'}, $data{'surname'}) if $data{'userid'} eq '';
759 # add expiration date if it isn't already there
760 unless ( $data{'dateexpiry'} ) {
761 $data{'dateexpiry'} = GetExpiryDate
( $data{'categorycode'}, C4
::Dates
->new()->output("iso") );
764 # add enrollment date if it isn't already there
765 unless ( $data{'dateenrolled'} ) {
766 $data{'dateenrolled'} = C4
::Dates
->new()->output("iso");
769 # create a disabled account if no password provided
770 $data{'password'} = ($data{'password'})? md5_base64
($data{'password'}) : '!';
771 $data{'borrowernumber'}=InsertInTable
("borrowers",\
%data);
774 # mysql_insertid is probably bad. not necessarily accurate and mysql-specific at best.
775 logaction
("MEMBERS", "CREATE", $data{'borrowernumber'}, "") if C4
::Context
->preference("BorrowersLog");
777 # check for enrollment fee & add it if needed
778 my $sth = $dbh->prepare("SELECT enrolmentfee FROM categories WHERE categorycode=?");
779 $sth->execute($data{'categorycode'});
780 my ($enrolmentfee) = $sth->fetchrow;
782 warn sprintf('Database returned the following error: %s', $sth->errstr);
785 if ($enrolmentfee && $enrolmentfee > 0) {
786 # insert fee in patron debts
787 manualinvoice
($data{'borrowernumber'}, '', '', 'A', $enrolmentfee);
790 return $data{'borrowernumber'};
795 my $uniqueness = Check_Userid($userid,$borrowernumber);
797 $borrowernumber is optional (i.e. it can contain a blank value). If $userid is passed with a blank $borrowernumber variable, the database will be checked for all instances of that userid (i.e. userid=? AND borrowernumber != '').
799 If $borrowernumber is provided, the database will be checked for every instance of that userid coupled with a different borrower(number) than the one provided.
802 0 for not unique (i.e. this $userid already exists)
803 1 for unique (i.e. this $userid does not exist, or this $userid/$borrowernumber combination already exists)
808 my ($uid,$member) = @_;
809 my $dbh = C4
::Context
->dbh;
812 "SELECT * FROM borrowers WHERE userid=? AND borrowernumber != ?");
813 $sth->execute( $uid, $member );
814 if ( ( $uid ne '' ) && ( my $row = $sth->fetchrow_hashref ) ) {
822 =head2 Generate_Userid
824 my $newuid = Generate_Userid($borrowernumber, $firstname, $surname);
826 Generate a userid using the $surname and the $firstname (if there is a value in $firstname).
828 $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.
831 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).
835 sub Generate_Userid
{
836 my ($borrowernumber, $firstname, $surname) = @_;
839 #The script will "do" the following code and increment the $offset until Check_Userid = 1 (i.e. until $newuid comes back as unique)
841 $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
842 $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
843 $newuid = lc(($firstname)?
"$firstname.$surname" : $surname);
844 $newuid = unac_string
('utf-8',$newuid);
845 $newuid .= $offset unless $offset == 0;
848 } while (!Check_Userid
($newuid,$borrowernumber));
854 my ( $uid, $member, $digest ) = @_;
855 my $dbh = C4
::Context
->dbh;
857 #Make sure the userid chosen is unique and not theirs if non-empty. If it is not,
858 #Then we need to tell the user and have them create a new one.
862 "SELECT * FROM borrowers WHERE userid=? AND borrowernumber != ?");
863 $sth->execute( $uid, $member );
864 if ( ( $uid ne '' ) && ( my $row = $sth->fetchrow_hashref ) ) {
868 #Everything is good so we can update the information.
871 "update borrowers set userid=?, password=? where borrowernumber=?");
872 $sth->execute( $uid, $digest, $member );
876 logaction
("MEMBERS", "CHANGE PASS", $member, "") if C4
::Context
->preference("BorrowersLog");
882 =head2 fixup_cardnumber
884 Warning: The caller is responsible for locking the members table in write
885 mode, to avoid database corruption.
889 use vars
qw( @weightings );
890 my @weightings = ( 8, 4, 6, 3, 5, 2, 1 );
892 sub fixup_cardnumber {
893 my ($cardnumber) = @_;
894 my $autonumber_members = C4::Context->boolean_preference('autoMemberNum') || 0;
896 # Find out whether member numbers should be generated
897 # automatically. Should be either "1" or something else.
898 # Defaults to "0", which is interpreted as "no".
900 # if ($cardnumber !~ /\S/ && $autonumber_members) {
901 ($autonumber_members) or return $cardnumber;
902 my $checkdigit = C4::Context->preference('checkdigit');
903 my $dbh = C4::Context->dbh;
904 if ( $checkdigit and $checkdigit eq 'katipo' ) {
906 # if checkdigit is selected, calculate katipo-style cardnumber.
907 # otherwise, just use the max()
908 # purpose: generate checksum'd member numbers.
909 # We'll assume we just got the max value of digits 2-8 of member #'s
910 # from the database and our job is to increment that by one,
911 # determine the 1st and 9th digits and return the full string.
912 my $sth = $dbh->prepare(
913 "select max(substring(borrowers.cardnumber,2,7)) as new_num from borrowers"
916 my $data = $sth->fetchrow_hashref;
917 $cardnumber = $data->{new_num};
918 if ( !$cardnumber ) { # If DB has no values,
919 $cardnumber = 1000000; # start at 1000000
925 for ( my $i = 0 ; $i < 8 ; $i += 1 ) {
926 # read weightings, left to right, 1 char at a time
927 my $temp1 = $weightings[$i];
929 # sequence left to right, 1 char at a time
930 my $temp2 = substr( $cardnumber, $i, 1 );
932 # mult each char 1-7 by its corresponding weighting
933 $sum += $temp1 * $temp2;
936 my $rem = ( $sum % 11 );
937 $rem = 'X' if $rem == 10;
939 return "V$cardnumber$rem";
942 my $sth = $dbh->prepare(
943 'SELECT MAX( CAST( cardnumber AS SIGNED ) ) FROM borrowers WHERE cardnumber REGEXP "^-?[0-9]+$"'
946 my ($result) = $sth->fetchrow;
949 return $cardnumber; # just here as a fallback/reminder
954 ($num_children, $children_arrayref) = &GetGuarantees($parent_borrno);
955 $child0_cardno = $children_arrayref->[0]{"cardnumber"};
956 $child0_borrno = $children_arrayref->[0]{"borrowernumber"};
958 C<&GetGuarantees> takes a borrower number (e.g., that of a patron
959 with children) and looks up the borrowers who are guaranteed by that
960 borrower (i.e., the patron's children).
962 C<&GetGuarantees> returns two values: an integer giving the number of
963 borrowers guaranteed by C<$parent_borrno>, and a reference to an array
964 of references to hash, which gives the actual results.
970 my ($borrowernumber) = @_;
971 my $dbh = C4::Context->dbh;
974 "select cardnumber,borrowernumber, firstname, surname from borrowers where guarantorid=?"
976 $sth->execute($borrowernumber);
979 my $data = $sth->fetchall_arrayref({});
980 return ( scalar(@$data), $data );
983 =head2 UpdateGuarantees
985 &UpdateGuarantees($parent_borrno);
988 C<&UpdateGuarantees> borrower data for an adult and updates all the guarantees
989 with the modified information
994 sub UpdateGuarantees {
996 my $dbh = C4::Context->dbh;
997 my ( $count, $guarantees ) = GetGuarantees( $data{'borrowernumber'} );
998 foreach my $guarantee (@$guarantees){
999 my $guaquery = qq|UPDATE borrowers
1000 SET address=?,fax=?,B_city=?,mobile=?,city=?,phone=?
1001 WHERE borrowernumber=?
1003 my $sth = $dbh->prepare($guaquery);
1004 $sth->execute($data{'address'},$data{'fax'},$data{'B_city'},$data{'mobile'},$data{'city'},$data{'phone'},$guarantee->{'borrowernumber'});
1007 =head2 GetPendingIssues
1009 my $issues = &GetPendingIssues(@borrowernumber);
1011 Looks up what the patron with the given borrowernumber has borrowed.
1013 C<&GetPendingIssues> returns a
1014 reference-to-array where each element is a reference-to-hash; the
1015 keys are the fields from the C<issues>, C<biblio>, and C<items> tables.
1016 The keys include C<biblioitems> fields except marc and marcxml.
1021 sub GetPendingIssues {
1022 my @borrowernumbers = @_;
1024 unless (@borrowernumbers ) { # return a ref_to_array
1025 return \@borrowernumbers; # to not cause surprise to caller
1028 # Borrowers part of the query
1030 for (my $i = 0; $i < @borrowernumbers; $i++) {
1031 $bquery .= ' issues.borrowernumber = ?';
1032 if ($i < $#borrowernumbers ) {
1037 # must avoid biblioitems.* to prevent large marc and marcxml fields from killing performance
1038 # FIXME: namespace collision: each table has "timestamp" fields. Which one is "timestamp" ?
1039 # FIXME: circ/ciculation.pl tries to sort by timestamp!
1040 # FIXME: namespace collision: other collisions possible.
1041 # FIXME: most of this data isn't really being used by callers.
1048 biblioitems.itemtype,
1051 biblioitems.publicationyear,
1052 biblioitems.publishercode,
1053 biblioitems.volumedate,
1054 biblioitems.volumedesc,
1057 borrowers.firstname,
1059 borrowers.cardnumber,
1060 issues.timestamp AS timestamp,
1061 issues.renewals AS renewals,
1062 issues.borrowernumber AS borrowernumber,
1063 items.renewals AS totalrenewals
1065 LEFT JOIN items ON items.itemnumber = issues.itemnumber
1066 LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
1067 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
1068 LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
1071 ORDER BY issues.issuedate"
1074 my $sth = C4::Context->dbh->prepare($query);
1075 $sth->execute(@borrowernumbers);
1076 my $data = $sth->fetchall_arrayref({});
1077 my $tz = C4::Context->tz();
1078 my $today = DateTime->now( time_zone => $tz);
1079 foreach (@{$data}) {
1080 if ($_->{issuedate}) {
1081 $_->{issuedate} = dt_from_string($_->{issuedate}, 'sql');
1083 $_->{date_due} or next;
1084 $_->{date_due} = DateTime::Format::DateParse->parse_datetime($_->{date_due}, $tz->name());
1085 if ( DateTime->compare($_->{date_due}, $today) == -1 ) {
1094 $issues = &GetAllIssues($borrowernumber, $sortkey, $limit);
1096 Looks up what the patron with the given borrowernumber has borrowed,
1097 and sorts the results.
1099 C<$sortkey> is the name of a field on which to sort the results. This
1100 should be the name of a field in the C<issues>, C<biblio>,
1101 C<biblioitems>, or C<items> table in the Koha database.
1103 C<$limit> is the maximum number of results to return.
1105 C<&GetAllIssues> an arrayref, C<$issues>, of hashrefs, the keys of which
1106 are the fields from the C<issues>, C<biblio>, C<biblioitems>, and
1107 C<items> tables of the Koha database.
1113 my ( $borrowernumber, $order, $limit ) = @_;
1115 my $dbh = C4::Context->dbh;
1117 'SELECT *, issues.timestamp as issuestimestamp, issues.renewals AS renewals,items.renewals AS totalrenewals,items.timestamp AS itemstimestamp
1119 LEFT JOIN items on items.itemnumber=issues.itemnumber
1120 LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
1121 LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
1122 WHERE borrowernumber=?
1124 SELECT *, old_issues.timestamp as issuestimestamp, old_issues.renewals AS renewals,items.renewals AS totalrenewals,items.timestamp AS itemstimestamp
1126 LEFT JOIN items on items.itemnumber=old_issues.itemnumber
1127 LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
1128 LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
1129 WHERE borrowernumber=? AND old_issues.itemnumber IS NOT NULL
1130 order by ' . $order;
1132 $query .= " limit $limit";
1135 my $sth = $dbh->prepare($query);
1136 $sth->execute( $borrowernumber, $borrowernumber );
1137 return $sth->fetchall_arrayref( {} );
1141 =head2 GetMemberAccountRecords
1143 ($total, $acctlines, $count) = &GetMemberAccountRecords($borrowernumber);
1145 Looks up accounting data for the patron with the given borrowernumber.
1147 C<&GetMemberAccountRecords> returns a three-element array. C<$acctlines> is a
1148 reference-to-array, where each element is a reference-to-hash; the
1149 keys are the fields of the C<accountlines> table in the Koha database.
1150 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1151 total amount outstanding for all of the account lines.
1155 sub GetMemberAccountRecords {
1156 my ($borrowernumber) = @_;
1157 my $dbh = C4::Context->dbh;
1163 WHERE borrowernumber=?);
1164 $strsth.=" ORDER BY date desc,timestamp DESC";
1165 my $sth= $dbh->prepare( $strsth );
1166 $sth->execute( $borrowernumber );
1169 while ( my $data = $sth->fetchrow_hashref ) {
1170 if ( $data->{itemnumber} ) {
1171 my $biblio = GetBiblioFromItemNumber( $data->{itemnumber} );
1172 $data->{biblionumber} = $biblio->{biblionumber};
1173 $data->{title} = $biblio->{title};
1175 $acctlines[$numlines] = $data;
1177 $total += int(1000 * $data->{'amountoutstanding'}); # convert float to integer to avoid round-off errors
1180 return ( $total, \@acctlines,$numlines);
1183 =head2 GetMemberAccountBalance
1185 ($total_balance, $non_issue_balance, $other_charges) = &GetMemberAccountBalance($borrowernumber);
1187 Calculates amount immediately owing by the patron - non-issue charges.
1188 Based on GetMemberAccountRecords.
1189 Charges exempt from non-issue are:
1191 * Rent (rental) if RentalsInNoissuesCharge syspref is set to false
1192 * Manual invoices if ManInvInNoissuesCharge syspref is set to false
1196 sub GetMemberAccountBalance {
1197 my ($borrowernumber) = @_;
1199 my $ACCOUNT_TYPE_LENGTH = 5; # this is plain ridiculous...
1201 my @not_fines = ('Res');
1202 push @not_fines, 'Rent' unless C4::Context->preference('RentalsInNoissuesCharge');
1203 unless ( C4::Context->preference('ManInvInNoissuesCharge') ) {
1204 my $dbh = C4::Context->dbh;
1205 my $man_inv_types = $dbh->selectcol_arrayref(qq{SELECT authorised_value FROM authorised_values WHERE category = 'MANUAL_INV'});
1206 push @not_fines, map substr($_, 0, $ACCOUNT_TYPE_LENGTH), @$man_inv_types;
1208 my %not_fine = map {$_ => 1} @not_fines;
1210 my ($total, $acctlines) = GetMemberAccountRecords($borrowernumber);
1211 my $other_charges = 0;
1212 foreach (@$acctlines) {
1213 $other_charges += $_->{amountoutstanding} if $not_fine{ substr($_->{accounttype}, 0, $ACCOUNT_TYPE_LENGTH) };
1216 return ( $total, $total - $other_charges, $other_charges);
1219 =head2 GetBorNotifyAcctRecord
1221 ($total, $acctlines, $count) = &GetBorNotifyAcctRecord($params,$notifyid);
1223 Looks up accounting data for the patron with the given borrowernumber per file number.
1225 C<&GetBorNotifyAcctRecord> returns a three-element array. C<$acctlines> is a
1226 reference-to-array, where each element is a reference-to-hash; the
1227 keys are the fields of the C<accountlines> table in the Koha database.
1228 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1229 total amount outstanding for all of the account lines.
1233 sub GetBorNotifyAcctRecord {
1234 my ( $borrowernumber, $notifyid ) = @_;
1235 my $dbh = C4::Context->dbh;
1238 my $sth = $dbh->prepare(
1241 WHERE borrowernumber=?
1243 AND amountoutstanding != '0'
1244 ORDER BY notify_id,accounttype
1247 $sth->execute( $borrowernumber, $notifyid );
1249 while ( my $data = $sth->fetchrow_hashref ) {
1250 if ( $data->{itemnumber} ) {
1251 my $biblio = GetBiblioFromItemNumber( $data->{itemnumber} );
1252 $data->{biblionumber} = $biblio->{biblionumber};
1253 $data->{title} = $biblio->{title};
1255 $acctlines[$numlines] = $data;
1257 $total += int(100 * $data->{'amountoutstanding'});
1260 return ( $total, \@acctlines, $numlines );
1263 =head2 checkuniquemember (OUEST-PROVENCE)
1265 ($result,$categorycode) = &checkuniquemember($collectivity,$surname,$firstname,$dateofbirth);
1267 Checks that a member exists or not in the database.
1269 C<&result> is nonzero (=exist) or 0 (=does not exist)
1270 C<&categorycode> is from categorycode table
1271 C<&collectivity> is 1 (= we add a collectivity) or 0 (= we add a physical member)
1272 C<&surname> is the surname
1273 C<&firstname> is the firstname (only if collectivity=0)
1274 C<&dateofbirth> is the date of birth in ISO format (only if collectivity=0)
1278 # FIXME: This function is not legitimate. Multiple patrons might have the same first/last name and birthdate.
1279 # This is especially true since first name is not even a required field.
1281 sub checkuniquemember {
1282 my ( $collectivity, $surname, $firstname, $dateofbirth ) = @_;
1283 my $dbh = C4::Context->dbh;
1284 my $request = ($collectivity) ?
1285 "SELECT borrowernumber,categorycode FROM borrowers WHERE surname=? " :
1287 "SELECT borrowernumber,categorycode FROM borrowers WHERE surname=? and firstname=? and dateofbirth=?" :
1288 "SELECT borrowernumber,categorycode FROM borrowers WHERE surname=? and firstname=?";
1289 my $sth = $dbh->prepare($request);
1290 if ($collectivity) {
1291 $sth->execute( uc($surname) );
1292 } elsif($dateofbirth){
1293 $sth->execute( uc($surname), ucfirst($firstname), $dateofbirth );
1295 $sth->execute( uc($surname), ucfirst($firstname));
1297 my @data = $sth->fetchrow;
1298 ( $data[0] ) and return $data[0], $data[1];
1302 sub checkcardnumber {
1303 my ($cardnumber,$borrowernumber) = @_;
1304 # If cardnumber is null, we assume they're allowed.
1305 return 0 if !defined($cardnumber);
1306 my $dbh = C4::Context->dbh;
1307 my $query = "SELECT * FROM borrowers WHERE cardnumber=?";
1308 $query .= " AND borrowernumber <> ?" if ($borrowernumber);
1309 my $sth = $dbh->prepare($query);
1310 if ($borrowernumber) {
1311 $sth->execute($cardnumber,$borrowernumber);
1313 $sth->execute($cardnumber);
1315 if (my $data= $sth->fetchrow_hashref()){
1324 =head2 getzipnamecity (OUEST-PROVENCE)
1326 take all info from table city for the fields city and zip
1327 check for the name and the zip code of the city selected
1331 sub getzipnamecity {
1333 my $dbh = C4::Context->dbh;
1336 "select city_name,city_state,city_zipcode,city_country from cities where cityid=? ");
1337 $sth->execute($cityid);
1338 my @data = $sth->fetchrow;
1339 return $data[0], $data[1], $data[2], $data[3];
1343 =head2 getdcity (OUEST-PROVENCE)
1345 recover cityid with city_name condition
1350 my ($city_name) = @_;
1351 my $dbh = C4::Context->dbh;
1352 my $sth = $dbh->prepare("select cityid from cities where city_name=? ");
1353 $sth->execute($city_name);
1354 my $data = $sth->fetchrow;
1358 =head2 GetFirstValidEmailAddress
1360 $email = GetFirstValidEmailAddress($borrowernumber);
1362 Return the first valid email address for a borrower, given the borrowernumber. For now, the order
1363 is defined as email, emailpro, B_email. Returns the empty string if the borrower has no email
1368 sub GetFirstValidEmailAddress {
1369 my $borrowernumber = shift;
1370 my $dbh = C4::Context->dbh;
1371 my $sth = $dbh->prepare( "SELECT email, emailpro, B_email FROM borrowers where borrowernumber = ? ");
1372 $sth->execute( $borrowernumber );
1373 my $data = $sth->fetchrow_hashref;
1375 if ($data->{'email'}) {
1376 return $data->{'email'};
1377 } elsif ($data->{'emailpro'}) {
1378 return $data->{'emailpro'};
1379 } elsif ($data->{'B_email'}) {
1380 return $data->{'B_email'};
1386 =head2 GetNoticeEmailAddress
1388 $email = GetNoticeEmailAddress($borrowernumber);
1390 Return the email address of borrower used for notices, given the borrowernumber.
1391 Returns the empty string if no email address.
1395 sub GetNoticeEmailAddress {
1396 my $borrowernumber = shift;
1398 my $which_address = C4::Context->preference("AutoEmailPrimaryAddress");
1399 # if syspref is set to 'first valid' (value == OFF), look up email address
1400 if ( $which_address eq 'OFF' ) {
1401 return GetFirstValidEmailAddress($borrowernumber);
1403 # specified email address field
1404 my $dbh = C4::Context->dbh;
1405 my $sth = $dbh->prepare( qq{
1406 SELECT $which_address AS primaryemail
1408 WHERE borrowernumber=?
1410 $sth->execute($borrowernumber);
1411 my $data = $sth->fetchrow_hashref;
1412 return $data->{'primaryemail'} || '';
1415 =head2 GetExpiryDate
1417 $expirydate = GetExpiryDate($categorycode, $dateenrolled);
1419 Calculate expiry date given a categorycode and starting date. Date argument must be in ISO format.
1420 Return date is also in ISO format.
1425 my ( $categorycode, $dateenrolled ) = @_;
1427 if ($categorycode) {
1428 my $dbh = C4::Context->dbh;
1429 my $sth = $dbh->prepare("SELECT enrolmentperiod,enrolmentperioddate FROM categories WHERE categorycode=?");
1430 $sth->execute($categorycode);
1431 $enrolments = $sth->fetchrow_hashref;
1433 # die "GetExpiryDate: for enrollmentperiod $enrolmentperiod (category '$categorycode') starting $dateenrolled.\n";
1434 my @date = split (/-/,$dateenrolled);
1435 if($enrolments->{enrolmentperiod}){
1436 return sprintf("%04d-%02d-%02d", Add_Delta_YM(@date,0,$enrolments->{enrolmentperiod}));
1438 return $enrolments->{enrolmentperioddate};
1442 =head2 checkuserpassword (OUEST-PROVENCE)
1444 check for the password and login are not used
1445 return the number of record
1446 0=> NOT USED 1=> USED
1450 sub checkuserpassword {
1451 my ( $borrowernumber, $userid, $password ) = @_;
1452 $password = md5_base64($password);
1453 my $dbh = C4::Context->dbh;
1456 "Select count(*) from borrowers where borrowernumber !=? and userid =? and password=? "
1458 $sth->execute( $borrowernumber, $userid, $password );
1459 my $number_rows = $sth->fetchrow;
1460 return $number_rows;
1464 =head2 GetborCatFromCatType
1466 ($codes_arrayref, $labels_hashref) = &GetborCatFromCatType();
1468 Looks up the different types of borrowers in the database. Returns two
1469 elements: a reference-to-array, which lists the borrower category
1470 codes, and a reference-to-hash, which maps the borrower category codes
1471 to category descriptions.
1476 sub GetborCatFromCatType {
1477 my ( $category_type, $action, $no_branch_limit ) = @_;
1479 my $branch_limit = $no_branch_limit
1481 : C4::Context->userenv ? C4::Context->userenv->{"branch"} : "";
1483 # FIXME - This API seems both limited and dangerous.
1484 my $dbh = C4::Context->dbh;
1487 SELECT categories.categorycode, categories.description
1491 LEFT JOIN categories_branches ON categories.categorycode = categories_branches.categorycode
1494 $request .= " $action ";
1495 $request .= " AND (branchcode = ? OR branchcode IS NULL) GROUP BY description" if $branch_limit;
1497 $request .= " WHERE branchcode = ? OR branchcode IS NULL GROUP BY description" if $branch_limit;
1499 $request .= " ORDER BY categorycode";
1501 my $sth = $dbh->prepare($request);
1503 $action ? $category_type : (),
1504 $branch_limit ? $branch_limit : ()
1510 while ( my $data = $sth->fetchrow_hashref ) {
1511 push @codes, $data->{'categorycode'};
1512 $labels{ $data->{'categorycode'} } = $data->{'description'};
1515 return ( \@codes, \%labels );
1518 =head2 GetBorrowercategory
1520 $hashref = &GetBorrowercategory($categorycode);
1522 Given the borrower's category code, the function returns the corresponding
1523 data hashref for a comprehensive information display.
1527 sub GetBorrowercategory {
1529 my $dbh = C4::Context->dbh;
1533 "SELECT description,dateofbirthrequired,upperagelimit,category_type
1535 WHERE categorycode = ?"
1537 $sth->execute($catcode);
1539 $sth->fetchrow_hashref;
1543 } # sub getborrowercategory
1546 =head2 GetBorrowerCategorycode
1548 $categorycode = &GetBorrowerCategoryCode( $borrowernumber );
1550 Given the borrowernumber, the function returns the corresponding categorycode
1553 sub GetBorrowerCategorycode {
1554 my ( $borrowernumber ) = @_;
1555 my $dbh = C4::Context->dbh;
1556 my $sth = $dbh->prepare( qq{
1559 WHERE borrowernumber = ?
1561 $sth->execute( $borrowernumber );
1562 return $sth->fetchrow;
1565 =head2 GetBorrowercategoryList
1567 $arrayref_hashref = &GetBorrowercategoryList;
1568 If no category code provided, the function returns all the categories.
1572 sub GetBorrowercategoryList {
1573 my $no_branch_limit = @_ ? shift : 0;
1574 my $branch_limit = $no_branch_limit
1576 : C4::Context->userenv ? C4::Context->userenv->{"branch"} : "";
1577 my $dbh = C4::Context->dbh;
1578 my $query = "SELECT categories.* FROM categories";
1580 LEFT JOIN categories_branches ON categories.categorycode = categories_branches.categorycode
1581 WHERE branchcode = ? OR branchcode IS NULL GROUP BY description
1583 $query .= " ORDER BY description";
1584 my $sth = $dbh->prepare( $query );
1585 $sth->execute( $branch_limit ? $branch_limit : () );
1586 my $data = $sth->fetchall_arrayref( {} );
1589 } # sub getborrowercategory
1591 =head2 ethnicitycategories
1593 ($codes_arrayref, $labels_hashref) = ðnicitycategories();
1595 Looks up the different ethnic types in the database. Returns two
1596 elements: a reference-to-array, which lists the ethnicity codes, and a
1597 reference-to-hash, which maps the ethnicity codes to ethnicity
1604 sub ethnicitycategories {
1605 my $dbh = C4::Context->dbh;
1606 my $sth = $dbh->prepare("Select code,name from ethnicity order by name");
1610 while ( my $data = $sth->fetchrow_hashref ) {
1611 push @codes, $data->{'code'};
1612 $labels{ $data->{'code'} } = $data->{'name'};
1614 return ( \@codes, \%labels );
1619 $ethn_name = &fixEthnicity($ethn_code);
1621 Takes an ethnicity code (e.g., "european" or "pi") and returns the
1622 corresponding descriptive name from the C<ethnicity> table in the
1623 Koha database ("European" or "Pacific Islander").
1630 my $ethnicity = shift;
1631 return unless $ethnicity;
1632 my $dbh = C4::Context->dbh;
1633 my $sth = $dbh->prepare("Select name from ethnicity where code = ?");
1634 $sth->execute($ethnicity);
1635 my $data = $sth->fetchrow_hashref;
1636 return $data->{'name'};
1637 } # sub fixEthnicity
1641 $dateofbirth,$date = &GetAge($date);
1643 this function return the borrowers age with the value of dateofbirth
1649 my ( $date, $date_ref ) = @_;
1651 if ( not defined $date_ref ) {
1652 $date_ref = sprintf( '%04d-%02d-%02d', Today() );
1655 my ( $year1, $month1, $day1 ) = split /-/, $date;
1656 my ( $year2, $month2, $day2 ) = split /-/, $date_ref;
1658 my $age = $year2 - $year1;
1659 if ( $month1 . $day1 > $month2 . $day2 ) {
1666 =head2 get_institutions
1668 $insitutions = get_institutions();
1670 Just returns a list of all the borrowers of type I, borrownumber and name
1675 sub get_institutions {
1676 my $dbh = C4::Context->dbh();
1679 "SELECT borrowernumber,surname FROM borrowers WHERE categorycode=? ORDER BY surname"
1683 while ( my $data = $sth->fetchrow_hashref() ) {
1684 $orgs{ $data->{'borrowernumber'} } = $data;
1688 } # sub get_institutions
1690 =head2 add_member_orgs
1692 add_member_orgs($borrowernumber,$borrowernumbers);
1694 Takes a borrowernumber and a list of other borrowernumbers and inserts them into the borrowers_to_borrowers table
1699 sub add_member_orgs {
1700 my ( $borrowernumber, $otherborrowers ) = @_;
1701 my $dbh = C4::Context->dbh();
1703 "INSERT INTO borrowers_to_borrowers (borrower1,borrower2) VALUES (?,?)";
1704 my $sth = $dbh->prepare($query);
1705 foreach my $otherborrowernumber (@$otherborrowers) {
1706 $sth->execute( $borrowernumber, $otherborrowernumber );
1709 } # sub add_member_orgs
1713 $cityarrayref = GetCities();
1715 Returns an array_ref of the entries in the cities table
1716 If there are entries in the table an empty row is returned
1717 This is currently only used to populate a popup in memberentry
1723 my $dbh = C4::Context->dbh;
1724 my $city_arr = $dbh->selectall_arrayref(
1725 q|SELECT cityid,city_zipcode,city_name,city_state,city_country FROM cities ORDER BY city_name|,
1727 if ( @{$city_arr} ) {
1728 unshift @{$city_arr}, {
1729 city_zipcode => q{},
1733 city_country
=> q{},
1740 =head2 GetSortDetails (OUEST-PROVENCE)
1742 ($lib) = &GetSortDetails($category,$sortvalue);
1744 Returns the authorized value details
1745 C<&$lib>return value of authorized value details
1746 C<&$sortvalue>this is the value of authorized value
1747 C<&$category>this is the value of authorized value category
1751 sub GetSortDetails
{
1752 my ( $category, $sortvalue ) = @_;
1753 my $dbh = C4
::Context
->dbh;
1754 my $query = qq|SELECT lib
1755 FROM authorised_values
1757 AND authorised_value
=?
|;
1758 my $sth = $dbh->prepare($query);
1759 $sth->execute( $category, $sortvalue );
1760 my $lib = $sth->fetchrow;
1761 return ($lib) if ($lib);
1762 return ($sortvalue) unless ($lib);
1765 =head2 MoveMemberToDeleted
1767 $result = &MoveMemberToDeleted($borrowernumber);
1769 Copy the record from borrowers to deletedborrowers table.
1773 # FIXME: should do it in one SQL statement w/ subquery
1774 # Otherwise, we should return the @data on success
1776 sub MoveMemberToDeleted
{
1777 my ($member) = shift or return;
1778 my $dbh = C4
::Context
->dbh;
1779 my $query = qq|SELECT
*
1781 WHERE borrowernumber
=?
|;
1782 my $sth = $dbh->prepare($query);
1783 $sth->execute($member);
1784 my @data = $sth->fetchrow_array;
1785 (@data) or return; # if we got a bad borrowernumber, there's nothing to insert
1787 $dbh->prepare( "INSERT INTO deletedborrowers VALUES ("
1788 . ( "?," x
( scalar(@data) - 1 ) )
1790 $sth->execute(@data);
1795 DelMember($borrowernumber);
1797 This function remove directly a borrower whitout writing it on deleteborrower.
1798 + Deletes reserves for the borrower
1803 my $dbh = C4
::Context
->dbh;
1804 my $borrowernumber = shift;
1805 #warn "in delmember with $borrowernumber";
1806 return unless $borrowernumber; # borrowernumber is mandatory.
1808 my $query = qq|DELETE
1810 WHERE borrowernumber
=?
|;
1811 my $sth = $dbh->prepare($query);
1812 $sth->execute($borrowernumber);
1816 WHERE borrowernumber = ?
1818 $sth = $dbh->prepare($query);
1819 $sth->execute($borrowernumber);
1820 logaction
("MEMBERS", "DELETE", $borrowernumber, "") if C4
::Context
->preference("BorrowersLog");
1824 =head2 ExtendMemberSubscriptionTo (OUEST-PROVENCE)
1826 $date = ExtendMemberSubscriptionTo($borrowerid, $date);
1828 Extending the subscription to a given date or to the expiry date calculated on ISO date.
1833 sub ExtendMemberSubscriptionTo
{
1834 my ( $borrowerid,$date) = @_;
1835 my $dbh = C4
::Context
->dbh;
1836 my $borrower = GetMember
('borrowernumber'=>$borrowerid);
1838 $date = (C4
::Context
->preference('BorrowerRenewalPeriodBase') eq 'dateexpiry') ?
1839 C4
::Dates
->new($borrower->{'dateexpiry'}, 'iso')->output("iso") :
1840 C4
::Dates
->new()->output("iso");
1841 $date = GetExpiryDate
( $borrower->{'categorycode'}, $date );
1843 my $sth = $dbh->do(<<EOF);
1845 SET dateexpiry='$date'
1846 WHERE borrowernumber='$borrowerid'
1848 # add enrolmentfee if needed
1849 $sth = $dbh->prepare("SELECT enrolmentfee FROM categories WHERE categorycode=?");
1850 $sth->execute($borrower->{'categorycode'});
1851 my ($enrolmentfee) = $sth->fetchrow;
1852 if ($enrolmentfee && $enrolmentfee > 0) {
1853 # insert fee in patron debts
1854 manualinvoice
($borrower->{'borrowernumber'}, '', '', 'A', $enrolmentfee);
1856 logaction
("MEMBERS", "RENEW", $borrower->{'borrowernumber'}, "Membership renewed")if C4
::Context
->preference("BorrowersLog");
1857 return $date if ($sth);
1861 =head2 GetRoadTypes (OUEST-PROVENCE)
1863 ($idroadtypearrayref, $roadttype_hashref) = &GetRoadTypes();
1865 Looks up the different road type . Returns two
1866 elements: a reference-to-array, which lists the id_roadtype
1867 codes, and a reference-to-hash, which maps the road type of the road .
1872 my $dbh = C4
::Context
->dbh;
1874 SELECT roadtypeid
,road_type
1876 ORDER BY road_type
|;
1877 my $sth = $dbh->prepare($query);
1882 # insert empty value to create a empty choice in cgi popup
1884 while ( my $data = $sth->fetchrow_hashref ) {
1886 push @id, $data->{'roadtypeid'};
1887 $roadtype{ $data->{'roadtypeid'} } = $data->{'road_type'};
1890 #test to know if the table contain some records if no the function return nothing
1897 return ( \
@id, \
%roadtype );
1903 =head2 GetTitles (OUEST-PROVENCE)
1905 ($borrowertitle)= &GetTitles();
1907 Looks up the different title . Returns array with all borrowers title
1912 my @borrowerTitle = split (/,|\|/,C4
::Context
->preference('BorrowersTitles'));
1913 unshift( @borrowerTitle, "" );
1914 my $count=@borrowerTitle;
1919 return ( \
@borrowerTitle);
1923 =head2 GetPatronImage
1925 my ($imagedata, $dberror) = GetPatronImage($cardnumber);
1927 Returns the mimetype and binary image data of the image for the patron with the supplied cardnumber.
1931 sub GetPatronImage
{
1932 my ($cardnumber) = @_;
1933 warn "Cardnumber passed to GetPatronImage is $cardnumber" if $debug;
1934 my $dbh = C4
::Context
->dbh;
1935 my $query = 'SELECT mimetype, imagefile FROM patronimage WHERE cardnumber = ?';
1936 my $sth = $dbh->prepare($query);
1937 $sth->execute($cardnumber);
1938 my $imagedata = $sth->fetchrow_hashref;
1939 warn "Database error!" if $sth->errstr;
1940 return $imagedata, $sth->errstr;
1943 =head2 PutPatronImage
1945 PutPatronImage($cardnumber, $mimetype, $imgfile);
1947 Stores patron binary image data and mimetype in database.
1948 NOTE: This function is good for updating images as well as inserting new images in the database.
1952 sub PutPatronImage
{
1953 my ($cardnumber, $mimetype, $imgfile) = @_;
1954 warn "Parameters passed in: Cardnumber=$cardnumber, Mimetype=$mimetype, " . ($imgfile ?
"Imagefile" : "No Imagefile") if $debug;
1955 my $dbh = C4
::Context
->dbh;
1956 my $query = "INSERT INTO patronimage (cardnumber, mimetype, imagefile) VALUES (?,?,?) ON DUPLICATE KEY UPDATE imagefile = ?;";
1957 my $sth = $dbh->prepare($query);
1958 $sth->execute($cardnumber,$mimetype,$imgfile,$imgfile);
1959 warn "Error returned inserting $cardnumber.$mimetype." if $sth->errstr;
1960 return $sth->errstr;
1963 =head2 RmPatronImage
1965 my ($dberror) = RmPatronImage($cardnumber);
1967 Removes the image for the patron with the supplied cardnumber.
1972 my ($cardnumber) = @_;
1973 warn "Cardnumber passed to GetPatronImage is $cardnumber" if $debug;
1974 my $dbh = C4
::Context
->dbh;
1975 my $query = "DELETE FROM patronimage WHERE cardnumber = ?;";
1976 my $sth = $dbh->prepare($query);
1977 $sth->execute($cardnumber);
1978 my $dberror = $sth->errstr;
1979 warn "Database error!" if $sth->errstr;
1983 =head2 GetHideLostItemsPreference
1985 $hidelostitemspref = &GetHideLostItemsPreference($borrowernumber);
1987 Returns the HideLostItems preference for the patron category of the supplied borrowernumber
1988 C<&$hidelostitemspref>return value of function, 0 or 1
1992 sub GetHideLostItemsPreference
{
1993 my ($borrowernumber) = @_;
1994 my $dbh = C4
::Context
->dbh;
1995 my $query = "SELECT hidelostitems FROM borrowers,categories WHERE borrowers.categorycode = categories.categorycode AND borrowernumber = ?";
1996 my $sth = $dbh->prepare($query);
1997 $sth->execute($borrowernumber);
1998 my $hidelostitems = $sth->fetchrow;
1999 return $hidelostitems;
2002 =head2 GetRoadTypeDetails (OUEST-PROVENCE)
2004 ($roadtype) = &GetRoadTypeDetails($roadtypeid);
2006 Returns the description of roadtype
2007 C<&$roadtype>return description of road type
2008 C<&$roadtypeid>this is the value of roadtype s
2012 sub GetRoadTypeDetails
{
2013 my ($roadtypeid) = @_;
2014 my $dbh = C4
::Context
->dbh;
2018 WHERE roadtypeid
=?
|;
2019 my $sth = $dbh->prepare($query);
2020 $sth->execute($roadtypeid);
2021 my $roadtype = $sth->fetchrow;
2025 =head2 GetBorrowersToExpunge
2027 $borrowers = &GetBorrowersToExpunge(
2028 not_borrowered_since => $not_borrowered_since,
2029 expired_before => $expired_before,
2030 category_code => $category_code,
2031 branchcode => $branchcode
2034 This function get all borrowers based on the given criteria.
2038 sub GetBorrowersToExpunge
{
2041 my $filterdate = $params->{'not_borrowered_since'};
2042 my $filterexpiry = $params->{'expired_before'};
2043 my $filtercategory = $params->{'category_code'};
2044 my $filterbranch = $params->{'branchcode'} ||
2045 ((C4
::Context
->preference('IndependentBranches')
2046 && C4
::Context
->userenv
2047 && C4
::Context
->userenv->{flags
} % 2 !=1
2048 && C4
::Context
->userenv->{branch
})
2049 ? C4
::Context
->userenv->{branch
}
2052 my $dbh = C4
::Context
->dbh;
2054 SELECT borrowers.borrowernumber,
2055 MAX(old_issues.timestamp) AS latestissue,
2056 MAX(issues.timestamp) AS currentissue
2058 JOIN categories USING (categorycode)
2059 LEFT JOIN old_issues USING (borrowernumber)
2060 LEFT JOIN issues USING (borrowernumber)
2061 WHERE category_type <> 'S'
2062 AND borrowernumber NOT IN (SELECT guarantorid FROM borrowers WHERE guarantorid IS NOT NULL AND guarantorid <> 0)
2065 if ( $filterbranch && $filterbranch ne "" ) {
2066 $query.= " AND borrowers.branchcode = ? ";
2067 push( @query_params, $filterbranch );
2069 if ( $filterexpiry ) {
2070 $query .= " AND dateexpiry < ? ";
2071 push( @query_params, $filterexpiry );
2073 if ( $filtercategory ) {
2074 $query .= " AND categorycode = ? ";
2075 push( @query_params, $filtercategory );
2077 $query.=" GROUP BY borrowers.borrowernumber HAVING currentissue IS NULL ";
2078 if ( $filterdate ) {
2079 $query.=" AND ( latestissue < ? OR latestissue IS NULL ) ";
2080 push @query_params,$filterdate;
2082 warn $query if $debug;
2084 my $sth = $dbh->prepare($query);
2085 if (scalar(@query_params)>0){
2086 $sth->execute(@query_params);
2093 while ( my $data = $sth->fetchrow_hashref ) {
2094 push @results, $data;
2099 =head2 GetBorrowersWhoHaveNeverBorrowed
2101 $results = &GetBorrowersWhoHaveNeverBorrowed
2103 This function get all borrowers who have never borrowed.
2105 I<$result> is a ref to an array which all elements are a hasref.
2109 sub GetBorrowersWhoHaveNeverBorrowed
{
2110 my $filterbranch = shift ||
2111 ((C4
::Context
->preference('IndependentBranches')
2112 && C4
::Context
->userenv
2113 && C4
::Context
->userenv->{flags
} % 2 !=1
2114 && C4
::Context
->userenv->{branch
})
2115 ? C4
::Context
->userenv->{branch
}
2117 my $dbh = C4
::Context
->dbh;
2119 SELECT borrowers.borrowernumber,max(timestamp) as latestissue
2121 LEFT JOIN issues ON borrowers.borrowernumber = issues.borrowernumber
2122 WHERE issues.borrowernumber IS NULL
2125 if ($filterbranch && $filterbranch ne ""){
2126 $query.=" AND borrowers.branchcode= ?";
2127 push @query_params,$filterbranch;
2129 warn $query if $debug;
2131 my $sth = $dbh->prepare($query);
2132 if (scalar(@query_params)>0){
2133 $sth->execute(@query_params);
2140 while ( my $data = $sth->fetchrow_hashref ) {
2141 push @results, $data;
2146 =head2 GetBorrowersWithIssuesHistoryOlderThan
2148 $results = &GetBorrowersWithIssuesHistoryOlderThan($date)
2150 this function get all borrowers who has an issue history older than I<$date> given on input arg.
2152 I<$result> is a ref to an array which all elements are a hashref.
2153 This hashref is containt the number of time this borrowers has borrowed before I<$date> and the borrowernumber.
2157 sub GetBorrowersWithIssuesHistoryOlderThan
{
2158 my $dbh = C4
::Context
->dbh;
2159 my $date = shift ||POSIX
::strftime
("%Y-%m-%d",localtime());
2160 my $filterbranch = shift ||
2161 ((C4
::Context
->preference('IndependentBranches')
2162 && C4
::Context
->userenv
2163 && C4
::Context
->userenv->{flags
} % 2 !=1
2164 && C4
::Context
->userenv->{branch
})
2165 ? C4
::Context
->userenv->{branch
}
2168 SELECT count(borrowernumber) as n,borrowernumber
2170 WHERE returndate < ?
2171 AND borrowernumber IS NOT NULL
2174 push @query_params, $date;
2176 $query.=" AND branchcode = ?";
2177 push @query_params, $filterbranch;
2179 $query.=" GROUP BY borrowernumber ";
2180 warn $query if $debug;
2181 my $sth = $dbh->prepare($query);
2182 $sth->execute(@query_params);
2185 while ( my $data = $sth->fetchrow_hashref ) {
2186 push @results, $data;
2191 =head2 GetBorrowersNamesAndLatestIssue
2193 $results = &GetBorrowersNamesAndLatestIssueList(@borrowernumbers)
2195 this function get borrowers Names and surnames and Issue information.
2197 I<@borrowernumbers> is an array which all elements are borrowernumbers.
2198 This hashref is containt the number of time this borrowers has borrowed before I<$date> and the borrowernumber.
2202 sub GetBorrowersNamesAndLatestIssue
{
2203 my $dbh = C4
::Context
->dbh;
2204 my @borrowernumbers=@_;
2206 SELECT surname,lastname, phone, email,max(timestamp)
2208 LEFT JOIN issues ON borrowers.borrowernumber=issues.borrowernumber
2209 GROUP BY borrowernumber
2211 my $sth = $dbh->prepare($query);
2213 my $results = $sth->fetchall_arrayref({});
2219 my $success = DebarMember( $borrowernumber, $todate );
2221 marks a Member as debarred, and therefore unable to checkout any more
2225 true on success, false on failure
2230 my $borrowernumber = shift;
2233 return unless defined $borrowernumber;
2234 return unless $borrowernumber =~ /^\d+$/;
2237 borrowernumber
=> $borrowernumber,
2247 my $success = ModPrivacy( $borrowernumber, $privacy );
2249 Update the privacy of a patron.
2252 true on success, false on failure
2259 my $borrowernumber = shift;
2260 my $privacy = shift;
2261 return unless defined $borrowernumber;
2262 return unless $borrowernumber =~ /^\d+$/;
2264 return ModMember
( borrowernumber
=> $borrowernumber,
2265 privacy
=> $privacy );
2270 AddMessage( $borrowernumber, $message_type, $message, $branchcode );
2272 Adds a message to the messages table for the given borrower.
2281 my ( $borrowernumber, $message_type, $message, $branchcode ) = @_;
2283 my $dbh = C4
::Context
->dbh;
2285 if ( ! ( $borrowernumber && $message_type && $message && $branchcode ) ) {
2289 my $query = "INSERT INTO messages ( borrowernumber, branchcode, message_type, message ) VALUES ( ?, ?, ?, ? )";
2290 my $sth = $dbh->prepare($query);
2291 $sth->execute( $borrowernumber, $branchcode, $message_type, $message );
2292 logaction
("MEMBERS", "ADDCIRCMESSAGE", $borrowernumber, $message) if C4
::Context
->preference("BorrowersLog");
2298 GetMessages( $borrowernumber, $type );
2300 $type is message type, B for borrower, or L for Librarian.
2301 Empty type returns all messages of any type.
2303 Returns all messages for the given borrowernumber
2308 my ( $borrowernumber, $type, $branchcode ) = @_;
2314 my $dbh = C4
::Context
->dbh;
2317 branches.branchname,
2320 messages.branchcode LIKE '$branchcode' AS can_delete
2321 FROM messages, branches
2322 WHERE borrowernumber = ?
2323 AND message_type LIKE ?
2324 AND messages.branchcode = branches.branchcode
2325 ORDER BY message_date DESC";
2326 my $sth = $dbh->prepare($query);
2327 $sth->execute( $borrowernumber, $type ) ;
2330 while ( my $data = $sth->fetchrow_hashref ) {
2331 my $d = C4
::Dates
->new( $data->{message_date
}, 'iso' );
2332 $data->{message_date_formatted
} = $d->output;
2333 push @results, $data;
2341 GetMessagesCount( $borrowernumber, $type );
2343 $type is message type, B for borrower, or L for Librarian.
2344 Empty type returns all messages of any type.
2346 Returns the number of messages for the given borrowernumber
2350 sub GetMessagesCount
{
2351 my ( $borrowernumber, $type, $branchcode ) = @_;
2357 my $dbh = C4
::Context
->dbh;
2359 my $query = "SELECT COUNT(*) as MsgCount FROM messages WHERE borrowernumber = ? AND message_type LIKE ?";
2360 my $sth = $dbh->prepare($query);
2361 $sth->execute( $borrowernumber, $type ) ;
2364 my $data = $sth->fetchrow_hashref;
2365 my $count = $data->{'MsgCount'};
2372 =head2 DeleteMessage
2374 DeleteMessage( $message_id );
2379 my ( $message_id ) = @_;
2381 my $dbh = C4
::Context
->dbh;
2382 my $query = "SELECT * FROM messages WHERE message_id = ?";
2383 my $sth = $dbh->prepare($query);
2384 $sth->execute( $message_id );
2385 my $message = $sth->fetchrow_hashref();
2387 $query = "DELETE FROM messages WHERE message_id = ?";
2388 $sth = $dbh->prepare($query);
2389 $sth->execute( $message_id );
2390 logaction
("MEMBERS", "DELCIRCMESSAGE", $message->{'borrowernumber'}, $message->{'message'}) if C4
::Context
->preference("BorrowersLog");
2395 IssueSlip($branchcode, $borrowernumber, $quickslip)
2397 Returns letter hash ( see C4::Letters::GetPreparedLetter )
2399 $quickslip is boolean, to indicate whether we want a quick slip
2404 my ($branch, $borrowernumber, $quickslip) = @_;
2406 # return unless ( C4::Context->boolean_preference('printcirculationslips') );
2408 my $now = POSIX
::strftime
("%Y-%m-%d", localtime);
2410 my $issueslist = GetPendingIssues
($borrowernumber);
2411 foreach my $it (@
$issueslist){
2412 if ((substr $it->{'issuedate'}, 0, 10) eq $now || (substr $it->{'lastreneweddate'}, 0, 10) eq $now) {
2415 elsif ((substr $it->{'date_due'}, 0, 10) le $now) {
2416 $it->{'overdue'} = 1;
2418 my $dt = dt_from_string
( $it->{'date_due'} );
2419 $it->{'date_due'} = output_pref
( $dt );;
2421 my @issues = sort { $b->{'timestamp'} <=> $a->{'timestamp'} } @
$issueslist;
2423 my ($letter_code, %repeat);
2425 $letter_code = 'ISSUEQSLIP';
2427 'checkedout' => [ map {
2431 }, grep { $_->{'now'} } @issues ],
2435 $letter_code = 'ISSUESLIP';
2437 'checkedout' => [ map {
2441 }, grep { !$_->{'overdue'} } @issues ],
2443 'overdue' => [ map {
2447 }, grep { $_->{'overdue'} } @issues ],
2450 $_->{'timestamp'} = $_->{'newdate'};
2452 } @
{ GetNewsToDisplay
("slip") } ],
2456 return C4
::Letters
::GetPreparedLetter
(
2457 module
=> 'circulation',
2458 letter_code
=> $letter_code,
2459 branchcode
=> $branch,
2461 'branches' => $branch,
2462 'borrowers' => $borrowernumber,
2468 =head2 GetBorrowersWithEmail
2470 ([$borrnum,$userid], ...) = GetBorrowersWithEmail('me@example.com');
2472 This gets a list of users and their basic details from their email address.
2473 As it's possible for multiple user to have the same email address, it provides
2474 you with all of them. If there is no userid for the user, there will be an
2475 C<undef> there. An empty list will be returned if there are no matches.
2479 sub GetBorrowersWithEmail
{
2482 my $dbh = C4
::Context
->dbh;
2484 my $query = "SELECT borrowernumber, userid FROM borrowers WHERE email=?";
2485 my $sth=$dbh->prepare($query);
2486 $sth->execute($email);
2488 while (my $ref = $sth->fetch) {
2491 die "Failure searching for borrowers by email address: $sth->errstr" if $sth->err;
2495 sub AddMember_Opac
{
2496 my ( %borrower ) = @_;
2498 $borrower{'categorycode'} = C4
::Context
->preference('PatronSelfRegistrationDefaultCategory');
2500 my $sr = new String
::Random
;
2501 $sr->{'A'} = [ 'A'..'Z', 'a'..'z' ];
2502 my $password = $sr->randpattern("AAAAAAAAAA");
2503 $borrower{'password'} = $password;
2505 $borrower{'cardnumber'} = fixup_cardnumber
();
2507 my $borrowernumber = AddMember
(%borrower);
2509 return ( $borrowernumber, $password );
2512 END { } # module clean-up code here (global destructor)