3 # Copyright 2006 SAN OUEST PROVENCE et Paul POULAIN
4 # Copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 # use Digest::MD5 qw(md5_base64);
28 use List
::MoreUtils qw
/uniq/;
35 use C4
::Members
::Attributes
;
36 use C4
::Members
::AttributeTypes
;
38 use C4
::Dates qw
/format_date format_date_in_iso/;
42 use C4
::Branch
; # GetBranches
43 use C4
::Form
::MessagingPreferences
;
48 $debug = $ENV{DEBUG} || 0;
52 ($debug) or $debug = $input->param('debug') || 0;
55 my $dbh = C4::Context->dbh;
57 my ($template, $loggedinuser, $cookie)
58 = get_template_and_user({template_name => "members/memberentrygen.tmpl",
62 flagsrequired => {borrowers => 1},
63 debug => ($debug) ? 1 : 0,
65 my $guarantorid = $input->param('guarantorid');
66 my $borrowernumber = $input->param('borrowernumber');
67 my $actionType = $input->param('actionType') || '';
68 my $modify = $input->param('modify');
69 my $delete = $input->param('delete');
70 my $op = $input->param('op');
71 my $destination = $input->param('destination');
72 my $cardnumber = $input->param('cardnumber');
73 my $check_member = $input->param('check_member');
74 my $nodouble = $input->param('nodouble');
75 my $duplicate = $input->param('duplicate');
76 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate'); # FIXME hack to represent fact that if we're
77 # modifying an existing patron, it ipso facto
78 # isn't a duplicate. Marking FIXME because this
79 # script needs to be refactored.
80 my $select_city = $input->param('select_city');
81 my $nok = $input->param('nok');
82 my $guarantorinfo = $input->param('guarantorinfo');
83 my $step = $input->param('step') || 0;
86 # $check_categorytype contains the value of duplicate borrowers category type to redirect in good template in step =2
87 my $check_categorytype=$input->param('check_categorytype');
88 # NOTE: Alert for ethnicity and ethnotes fields, they are invalid in all borrowers form
91 my $userenv = C4::Context->userenv;
93 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
95 my $minpw = C4::Context->preference('minPasswordLength');
96 $template->param("minPasswordLength" => $minpw);
98 # function to designate mandatory fields (visually with css)
99 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
100 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
101 foreach (@field_check) {
102 $template->param( "mandatory$_" => 1);
104 # we'll need this, later.
105 my $dateofbirthmandatory = (scalar grep {$_ eq "dateofbirth"} @field_check) ? 1 : 0;
106 # function to designate unwanted fields
107 my $check_BorrowerUnwantedField=C4::Context->preference("BorrowerUnwantedField");
108 @field_check=split(/\|/,$check_BorrowerUnwantedField);
109 foreach (@field_check) {
111 $template->param( "no$_" => 1);
113 $template->param( "add" => 1 ) if ( $op eq 'add' );
114 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
115 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
116 ( $borrower_data = GetMember( 'borrowernumber' => $borrowernumber ) ) if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' );
117 my $categorycode = $input->param('categorycode') || $borrower_data->{'categorycode'};
118 my $category_type = $input->param('category_type') || '';
120 $template->{VARS}->{'type_only'} = 1;
122 my $new_c_type = $category_type; #if we have input param, then we've already chosen the cat_type.
123 unless ($category_type or !($categorycode)){
124 my $borrowercategory = GetBorrowercategory($categorycode);
125 $category_type = $borrowercategory->{'category_type'};
126 my $category_name = $borrowercategory->{'description'};
127 $template->param("categoryname"=>$category_name);
129 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
131 # if a add or modify is requested => check validity of data.
132 %data = %$borrower_data if ($borrower_data);
134 # initialize %newdata
135 my %newdata; # comes from $input->param()
136 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
137 my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
138 foreach my $key (@names) {
139 if (defined $input->param($key)) {
140 $newdata{$key} = $input->param($key);
141 $newdata{$key} =~ s/\"/"/g unless $key eq 'borrowernotes' or $key eq 'opacnote';
145 ## Manipulate debarred
146 if ( $newdata{debarred} ) {
147 $newdata{debarred} = $newdata{datedebarred} ? $newdata{datedebarred} : "9999-12-31";
148 } elsif ( exists( $newdata{debarred} ) && !( $newdata{debarred} ) ) {
149 undef( $newdata{debarred} );
150 undef( $newdata{debarredcomment} );
151 } elsif ( exists( $newdata{debarredcomment} ) && $newdata{debarredcomment} eq "" ) {
152 undef( $newdata{debarredcomment} );
155 my $dateobject = C4::Dates->new();
156 my $syspref = $dateobject->regexp(); # same syspref format for all 3 dates
157 my $iso = $dateobject->regexp('iso'); #
158 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
159 next unless exists $newdata{$_};
160 my $userdate = $newdata{$_} or next;
161 if ($userdate =~ /$syspref/) {
162 $newdata{$_} = format_date_in_iso
($userdate); # if they match syspref format, then convert to ISO
163 } elsif ($userdate =~ /$iso/) {
164 warn "Date $_ ($userdate) is already in ISO format";
166 ($userdate eq '0000-00-00') and warn "Data error: $_ is '0000-00-00'";
167 $template->param( "ERROR_$_" => 1 ); # else ERROR!
168 push(@errors,"ERROR_$_");
171 # check permission to modify login info.
172 if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4
::Auth
::haspermission
($userenv->{'id'},{'staffaccess'=>1})) ) {
177 # remove keys from %newdata that ModMember() doesn't like
179 my @keys_to_delete = (
180 qr/^BorrowerMandatoryField$/,
187 qr/^select_roadtype$/,
190 qr/^setting_extended_patron_attributes$/,
191 qr/^setting_messaging_prefs$/,
199 for my $regexp (@keys_to_delete) {
200 for (keys %newdata) {
201 delete($newdata{$_}) if /$regexp/;
206 #############test for member being unique #############
207 if ( ( $op eq 'insert' ) and !$nodouble ) {
208 my $category_type_send;
209 if ( $category_type eq 'I' ) {
210 $category_type_send = $category_type;
212 my $check_category; # recover the category code of the doublon suspect borrowers
213 # ($result,$categorycode) = checkuniquemember($collectivity,$surname,$firstname,$dateofbirth)
214 ( $check_member, $check_category ) = checkuniquemember
(
216 ( $newdata{surname
} ?
$newdata{surname
} : $data{surname
} ),
217 ( $newdata{firstname
} ?
$newdata{firstname
} : $data{firstname
} ),
218 ( $newdata{dateofbirth
} ?
$newdata{dateofbirth
} : $data{dateofbirth
} )
220 if ( !$check_member ) {
224 # recover the category type if the borrowers is a doublon
225 if ($check_category) {
226 my $tmpborrowercategory = GetBorrowercategory
($check_category);
227 $check_categorytype = $tmpborrowercategory->{'category_type'};
231 #recover all data from guarantor address phone ,fax...
232 if ( $guarantorid and ( $category_type eq 'C' || $category_type eq 'P' )) {
233 if (my $guarantordata=GetMember
(borrowernumber
=> $guarantorid)) {
234 $guarantorinfo=$guarantordata->{'surname'}." , ".$guarantordata->{'firstname'};
235 $newdata{'contactfirstname'}= $guarantordata->{'firstname'};
236 $newdata{'contactname'} = $guarantordata->{'surname'};
237 $newdata{'contacttitle'} = $guarantordata->{'title'};
238 if ( $op eq 'add' ) {
239 foreach (qw(streetnumber address streettype address2
240 zipcode country city state phone phonepro mobile fax email emailpro branchcode
241 B_streetnumber B_streettype B_address B_address2
242 B_city B_state B_zipcode B_country B_email B_phone)) {
243 $newdata{$_} = $guarantordata->{$_};
249 ###############test to take the right zipcode, country and city name ##############
250 # set only if parameter was passed from the form
251 $newdata{'city'} = $input->param('city') if defined($input->param('city'));
252 $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
253 $newdata{'country'} = $input->param('country') if defined($input->param('country'));
255 #builds default userid
256 if ( (defined $newdata{'userid'}) && ($newdata{'userid'} eq '')){
257 $newdata{'userid'} = Generate_Userid
($borrowernumber, $newdata{'firstname'}, $newdata{'surname'});
260 $debug and warn join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
261 my $extended_patron_attributes = ();
262 if ($op eq 'save' || $op eq 'insert'){
263 # If the cardnumber is blank, treat it as null.
264 $newdata{'cardnumber'} = undef if $newdata{'cardnumber'} =~ /^\s*$/;
266 if (checkcardnumber
($newdata{cardnumber
},$newdata{borrowernumber
})){
267 push @errors, 'ERROR_cardnumber';
269 if ($newdata{dateofbirth
} && $dateofbirthmandatory) {
270 my $age = GetAge
($newdata{dateofbirth
});
271 my $borrowercategory=GetBorrowercategory
($newdata{'categorycode'});
272 my ($low,$high) = ($borrowercategory->{'dateofbirthrequired'}, $borrowercategory->{'upperagelimit'});
273 if (($high && ($age > $high)) or ($age < $low)) {
274 push @errors, 'ERROR_age_limitations';
275 $template->param( age_low
=> $low);
276 $template->param( age_high
=> $high);
280 if($newdata{surname
} && C4
::Context
->preference('uppercasesurnames')) {
281 $newdata{'surname'} = uc($newdata{'surname'});
284 if (C4
::Context
->preference("IndependantBranches")) {
285 if ($userenv && $userenv->{flags
} % 2 != 1){
286 $debug and print STDERR
" $newdata{'branchcode'} : ".$userenv->{flags
}.":".$userenv->{branch
};
287 unless (!$newdata{'branchcode'} || $userenv->{branch
} eq $newdata{'branchcode'}){
288 push @errors, "ERROR_branch";
292 # Check if the userid is unique
293 unless (Check_Userid
($newdata{'userid'},$borrowernumber)) {
294 push @errors, "ERROR_login_exist";
297 my $password = $input->param('password');
298 my $password2 = $input->param('password2');
299 push @errors, "ERROR_password_mismatch" if ( $password ne $password2 );
300 push @errors, "ERROR_short_password" if( $password && $minpw && $password ne '****' && (length($password) < $minpw) );
302 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
303 $extended_patron_attributes = parse_extended_patron_attributes
($input);
304 foreach my $attr (@
$extended_patron_attributes) {
305 unless (C4
::Members
::Attributes
::CheckUniqueness
($attr->{code
}, $attr->{value
}, $borrowernumber)) {
306 push @errors, "ERROR_extended_unique_id_failed";
307 $template->param(ERROR_extended_unique_id_failed
=> "$attr->{code}/$attr->{value}");
313 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
314 unless ($newdata{'dateexpiry'}){
315 my $arg2 = $newdata{'dateenrolled'} || C4
::Dates
->today('iso');
316 $newdata{'dateexpiry'} = GetExpiryDate
($newdata{'categorycode'},$arg2);
320 if ( ( defined $input->param('SMSnumber') ) && ( $input->param('SMSnumber') ne $newdata{'mobile'} ) ) {
321 $newdata{smsalertnumber
} = $input->param('SMSnumber');
324 ### Error checks should happen before this line.
325 $nok = $nok || scalar(@errors);
326 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
327 $debug and warn "$op dates: " . join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
328 if ($op eq 'insert'){
329 # we know it's not a duplicate borrowernumber or there would already be an error
330 $borrowernumber = &AddMember
(%newdata);
331 $newdata{'borrowernumber'} = $borrowernumber;
333 # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
334 if ( C4
::Context
->preference("AutoEmailOpacUser") == 1 && $newdata{'userid'} && $newdata{'password'}) {
335 #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
337 if (C4
::Context
->preference("AutoEmailPrimaryAddress") ne 'OFF' &&
338 $newdata{C4
::Context
->preference("AutoEmailPrimaryAddress")} =~ /\w\@\w/ ) {
339 $emailaddr = $newdata{C4
::Context
->preference("AutoEmailPrimaryAddress")}
341 elsif ($newdata{email
} =~ /\w\@\w/) {
342 $emailaddr = $newdata{email
}
344 elsif ($newdata{emailpro
} =~ /\w\@\w/) {
345 $emailaddr = $newdata{emailpro
}
347 elsif ($newdata{B_email
} =~ /\w\@\w/) {
348 $emailaddr = $newdata{B_email
}
350 # if we manage to find a valid email address, send notice
352 $newdata{emailaddr
} = $emailaddr;
355 $err = SendAlerts
( 'members', \
%newdata, "ACCTDETAILS" );
358 $template->param(error_alert
=> $@
);
359 } elsif ( ref($err) eq "HASH" && defined $err->{error
} and $err->{error
} eq "no_email" ) {
360 $template->{VARS
}->{'error_alert'} = "no_email";
362 $template->{VARS
}->{'info_alert'} = 1;
367 if ($data{'organisations'}){
368 # need to add the members organisations
369 my @orgs=split(/\|/,$data{'organisations'});
370 add_member_orgs
($borrowernumber,\
@orgs);
372 if (C4
::Context
->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
373 C4
::Members
::Attributes
::SetBorrowerAttributes
($borrowernumber, $extended_patron_attributes);
375 if (C4
::Context
->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
376 C4
::Form
::MessagingPreferences
::handle_form_action
($input, { borrowernumber
=> $borrowernumber }, $template, 1, $newdata{'categorycode'});
378 } elsif ($op eq 'save'){
379 if ($NoUpdateLogin) {
380 delete $newdata{'password'};
381 delete $newdata{'userid'};
383 &ModMember
(%newdata) unless scalar(keys %newdata) <= 1; # bug 4508 - avoid crash if we're not
384 # updating any columns in the borrowers table,
385 # which can happen if we're only editing the
386 # patron attributes or messaging preferences sections
387 if (C4
::Context
->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
388 C4
::Members
::Attributes
::SetBorrowerAttributes
($borrowernumber, $extended_patron_attributes);
390 if (C4
::Context
->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
391 C4
::Form
::MessagingPreferences
::handle_form_action
($input, { borrowernumber
=> $borrowernumber }, $template);
394 print scalar ($destination eq "circ") ?
395 $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber") :
396 $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber") ;
397 exit; # You can only send 1 redirect! After that, content or other headers don't matter.
401 print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
402 exit; # same as above
405 if ($nok or !$nodouble){
406 $op="add" if ($op eq "insert");
407 $op="modify" if ($op eq "save");
409 $template->param( updtype
=> ($op eq 'add' ?
'I':'M')); # used to check for $op eq "insert"... but we just changed $op!
411 $template->param( step_1
=> 1,step_2
=> 1,step_3
=> 1, step_4
=> 1, step_5
=> 1, step_6
=> 1);
414 if (C4
::Context
->preference("IndependantBranches")) {
415 my $userenv = C4
::Context
->userenv;
416 if ($userenv->{flags
} % 2 != 1 && $data{'branchcode'}){
417 unless ($userenv->{branch
} eq $data{'branchcode'}){
418 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
424 $template->param( updtype
=> 'I', step_1
=>1, step_2
=>1, step_3
=>1, step_4
=>1, step_5
=> 1, step_6
=> 1);
426 if ($op eq "modify") {
427 $template->param( updtype
=> 'M',modify
=> 1 );
428 $template->param( step_1
=>1, step_2
=>1, step_3
=>1, step_4
=>1, step_5
=> 1, step_6
=> 1) unless $step;
430 $template->param( categorycode
=> $borrower_data->{'categorycode'} );
433 if ( $op eq "duplicate" ) {
434 $template->param( updtype
=> 'I' );
435 $template->param( step_1
=> 1, step_2
=> 1, step_3
=> 1, step_4
=> 1, step_5
=> 1, step_6
=> 1 ) unless $step;
436 $data{'cardnumber'} = "";
439 $data{'cardnumber'}=fixup_cardnumber
($data{'cardnumber'}) if ( ( $op eq 'add' ) or ( $op eq 'duplicate' ) );
440 if(!defined($data{'sex'})){
441 $template->param( none
=> 1);
442 } elsif($data{'sex'} eq 'F'){
443 $template->param( female
=> 1);
444 } elsif ($data{'sex'} eq 'M'){
445 $template->param( male
=> 1);
447 $template->param( none
=> 1);
450 ##Now all the data to modify a member.
451 my ($categories,$labels)=ethnicitycategories
();
453 my $ethnicitycategoriescount=$#{$categories};
455 if ($ethnicitycategoriescount>=0) {
456 $ethcatpopup = CGI
::popup_menu
(-name
=>'ethnicity',
459 -values=>$categories,
460 -default=>$data{'ethnicity'},
462 $template->param(ethcatpopup
=> $ethcatpopup); # bad style, has to be fixed
466 my $no_categories = 1;
468 foreach (qw(C A S P I X)) {
469 my $action="WHERE category_type=?";
470 ($categories,$labels)=GetborCatFromCatType
($_,$action);
471 if(scalar(@
$categories) > 0){ $no_categories = 0; }
473 foreach my $cat (@
$categories){
474 push @categoryloop,{'categorycode' => $cat,
475 'categoryname' => $labels->{$cat},
476 'categorycodeselected' => ((defined($borrower_data->{'categorycode'}) &&
477 $cat eq $borrower_data->{'categorycode'})
478 || (defined($categorycode) && $cat eq $categorycode)),
482 $typehash{'typename'}=$_;
483 my $typedescription = "typename_".$typehash{'typename'};
484 $typehash{'categoryloop'}=\
@categoryloop;
485 push @typeloop,{'typename' => $_,
486 $typedescription => 1,
487 'categoryloop' => \
@categoryloop};
489 $template->param('typeloop' => \
@typeloop,
490 no_categories
=> $no_categories);
491 if($no_categories){ $no_add = 1; }
493 if ( $guarantorid ) {
494 $select_city = getidcity
($data{city
});
496 ($default_city=$select_city) if ($step eq 0);
497 if (!defined($select_city) or $select_city eq '' ){
498 $default_city = &getidcity
($data{'city'});
501 my $city_arrayref = GetCities
();
502 if (@
{$city_arrayref} ) {
503 $template->param( city_cgipopup
=> 1);
505 if ($default_city) { # flag the current or default val
506 for my $city ( @
{$city_arrayref} ) {
507 if ($default_city == $city->{cityid
}) {
508 $city->{selected
} = 1;
515 my $default_roadtype;
516 $default_roadtype=$data{'streettype'} ;
517 my($roadtypeid,$road_type)=GetRoadTypes
();
518 $template->param( road_cgipopup
=> 1) if ($roadtypeid );
519 my $roadpopup = CGI
::popup_menu
(-name
=>'streettype',
521 -values=>$roadtypeid,
524 -default=>$default_roadtype
527 my $default_borrowertitle = '';
528 unless ( $op eq 'duplicate' ) { $default_borrowertitle=$data{'title'} }
529 my($borrowertitle)=GetTitles
();
530 $template->param( title_cgipopup
=> 1) if ($borrowertitle);
531 my $borrotitlepopup = CGI
::popup_menu
(-name
=>'title',
533 -values=>$borrowertitle,
535 -default=>$default_borrowertitle
538 my @relationships = split /,|\|/, C4
::Context
->preference('borrowerRelationship');
540 while (@relationships) {
541 my $relship = shift @relationships || '';
542 my %row = ('relationship' => $relship);
543 if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
544 $row{'selected'}=' selected';
548 push(@relshipdata, \
%row);
551 my %flags = ( 'gonenoaddress' => ['gonenoaddress' ],
556 foreach (keys(%flags)) {
558 my %row = ('key' => $key,
559 'name' => $flags{$key}[0]);
561 $row{'yes'}=' checked';
566 $row{'no'}=' checked';
568 push @flagdata,\
%row;
572 # in modify mod: userbranch value for GetBranchesLoop() comes from borrowers table
573 # in add mod: userbranch value come from branches table (ip correspondence)
576 if (C4
::Context
->userenv && C4
::Context
->userenv->{'branch'}) {
577 $userbranch = C4
::Context
->userenv->{'branch'};
580 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || ( $op eq 'add' && $category_type eq 'C' ) )) {
581 $userbranch = $data{'branchcode'};
584 my $branchloop = GetBranchesLoop
( $userbranch );
588 $template->param(no_branches
=> 1);
592 $template->param(no_categories
=> 1);
594 $template->param(no_add
=> $no_add);
595 my $CGIorganisations;
596 my $member_of_institution;
597 if (C4
::Context
->preference("memberofinstitution")){
598 my $organisations=get_institutions
();
601 foreach my $organisation (keys %$organisations) {
602 push @orgs,$organisation;
603 $org_labels{$organisation}=$organisations->{$organisation}->{'surname'};
605 $member_of_institution=1;
607 $CGIorganisations = CGI
::scrolling_list
( -id
=> 'organisations',
608 -name
=> 'organisations',
609 -labels
=> \
%org_labels,
617 # --------------------------------------------------------------------------------------------------------
619 my $CGIsort = buildCGIsort
("Bsort1","sort1",$data{'sort1'});
621 $template->param(CGIsort1
=> $CGIsort);
623 $template->param( sort1
=> $data{'sort1'}); # shouldn't this be in an "else" statement like the 2nd one?
625 $CGIsort = buildCGIsort
("Bsort2","sort2",$data{'sort2'});
627 $template->param(CGIsort2
=> $CGIsort);
629 $template->param( sort2
=> $data{'sort2'});
633 foreach my $error (@errors) {
634 $template->param($error) || $template->param( $error => 1);
636 $template->param(nok
=> 1);
639 #Formatting data for display
641 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
642 $data{'dateenrolled'}=C4
::Dates
->today('iso');
644 if ( $op eq 'duplicate' ) {
645 $data{'dateenrolled'} = C4
::Dates
->today('iso');
646 $data{'dateexpiry'} = GetExpiryDate
( $data{'categorycode'}, $data{'dateenrolled'} );
648 if (C4
::Context
->preference('uppercasesurnames')) {
649 $data{'surname'} =uc($data{'surname'} );
650 $data{'contactname'}=uc($data{'contactname'});
653 $data{debarred
} = C4
::Overdues
::CheckBorrowerDebarred
($borrowernumber);
654 $data{datedebarred
} = $data{debarred
} if ( $data{debarred
} && $data{debarred
} ne "9999-12-31" );
655 foreach (qw(dateenrolled dateexpiry dateofbirth datedebarred)) {
656 $data{$_} = format_date
($data{$_}); # back to syspref for display
657 $template->param( $_ => $data{$_});
660 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
661 $template->param(ExtendedPatronAttributes
=> 1);
662 patron_attributes_form
($template, $borrowernumber);
665 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
667 C4
::Form
::MessagingPreferences
::set_form_values
({ categorycode
=> $categorycode }, $template);
669 C4
::Form
::MessagingPreferences
::set_form_values
({ borrowernumber
=> $borrowernumber }, $template);
671 $template->param(SMSSendDriver
=> C4
::Context
->preference("SMSSendDriver"));
672 $template->param(SMSnumber
=> defined $data{'smsalertnumber'} ?
$data{'smsalertnumber'} : $data{'mobile'});
673 $template->param(TalkingTechItivaPhone
=> C4
::Context
->preference("TalkingTechItivaPhoneNotification"));
676 $template->param( "showguarantor" => ($category_type=~/A|I|S|X/) ?
0 : 1); # associate with step to know where you are
677 $debug and warn "memberentry step: $step";
678 $template->param(%data);
679 $template->param( "step_$step" => 1) if $step; # associate with step to know where u are
680 $template->param( step
=> $step ) if $step; # associate with step to know where u are
683 BorrowerMandatoryField
=> C4
::Context
->preference("BorrowerMandatoryField"),#field to test with javascript
684 category_type
=> $category_type,#to know the category type of the borrower
685 select_city
=> $select_city,
686 "$category_type" => 1,# associate with step to know where u are
687 destination
=> $destination,#to know wher u come from and wher u must go in redirect
688 check_member
=> $check_member,#to know if the borrower already exist(=>1) or not (=>0)
691 $template->param( branchloop
=> $branchloop ) if ( $branchloop );
693 nodouble
=> $nodouble,
694 borrowernumber
=> $borrowernumber, #register number
695 guarantorid
=> ($borrower_data->{'guarantorid'} || $guarantorid),
696 ethcatpopup
=> $ethcatpopup,
697 relshiploop
=> \
@relshipdata,
698 city_loop
=> $city_arrayref,
699 roadpopup
=> $roadpopup,
700 borrotitlepopup
=> $borrotitlepopup,
701 guarantorinfo
=> $guarantorinfo,
702 flagloop
=> \
@flagdata,
703 dateformat
=> C4
::Dates
->new()->visual(),
704 C4
::Context
->preference('dateformat') => 1,
705 check_categorytype
=>$check_categorytype,#to recover the category type with checkcategorytype function
706 category_type
=>$category_type,
708 nok
=> $nok,#flag to konw if an error
709 memberofinstution
=> $member_of_institution,
710 CGIorganisations
=> $CGIorganisations,
711 NoUpdateLogin
=> $NoUpdateLogin
714 if(defined($data{'flags'})){
715 $template->param(flags
=>$data{'flags'});
717 if(defined($data{'contacttitle'})){
718 $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
722 output_html_with_http_headers
$input, $cookie, $template->output;
724 sub parse_extended_patron_attributes
{
726 my @patron_attr = grep { /^patron_attr_\d+$/ } $input->param();
730 foreach my $key (@patron_attr) {
731 my $value = $input->param($key);
732 next unless defined($value) and $value ne '';
733 my $password = $input->param("${key}_password");
734 my $code = $input->param("${key}_code");
735 next if exists $dups{$code}->{$value};
736 $dups{$code}->{$value} = 1;
737 push @attr, { code
=> $code, value
=> $value, password
=> $password };
742 sub patron_attributes_form
{
743 my $template = shift;
744 my $borrowernumber = shift;
746 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
747 if (scalar(@types) == 0) {
748 $template->param(no_patron_attribute_types
=> 1);
751 my $attributes = C4
::Members
::Attributes
::GetBorrowerAttributes
($borrowernumber);
752 my @classes = uniq
( map {$_->{class}} @
$attributes );
753 @classes = sort @classes;
755 # map patron's attributes into a more convenient structure
757 foreach my $attr (@
$attributes) {
758 push @
{ $attr_hash{$attr->{code
}} }, $attr;
761 my @attribute_loop = ();
764 foreach my $type_code (map { $_->{code
} } @types) {
765 my $attr_type = C4
::Members
::AttributeTypes
->fetch($type_code);
767 class => $attr_type->class(),
768 code
=> $attr_type->code(),
769 description
=> $attr_type->description(),
770 repeatable
=> $attr_type->repeatable(),
771 password_allowed
=> $attr_type->password_allowed(),
772 category
=> $attr_type->authorised_value_category(),
773 category_code
=> $attr_type->category_code(),
776 if (exists $attr_hash{$attr_type->code()}) {
777 foreach my $attr (@
{ $attr_hash{$attr_type->code()} }) {
778 my $newentry = { map { $_ => $entry->{$_} } %$entry };
779 $newentry->{value
} = $attr->{value
};
780 $newentry->{password
} = $attr->{password
};
781 $newentry->{use_dropdown
} = 0;
782 if ($attr_type->authorised_value_category()) {
783 $newentry->{use_dropdown
} = 1;
784 $newentry->{auth_val_loop
} = GetAuthorisedValues
($attr_type->authorised_value_category(), $attr->{value
});
787 $newentry->{form_id
} = "patron_attr_$i";
788 push @
{$items_by_class{$attr_type->class()}}, $newentry;
792 my $newentry = { map { $_ => $entry->{$_} } %$entry };
793 if ($attr_type->authorised_value_category()) {
794 $newentry->{use_dropdown
} = 1;
795 $newentry->{auth_val_loop
} = GetAuthorisedValues
($attr_type->authorised_value_category());
797 $newentry->{form_id
} = "patron_attr_$i";
798 push @
{$items_by_class{$attr_type->class()}}, $newentry;
801 while ( my ($class, @items) = each %items_by_class ) {
802 my $lib = GetAuthorisedValueByCode
( 'PA_CLASS', $class ) || $class;
803 push @attribute_loop, {
810 $template->param(patron_attributes
=> \
@attribute_loop);