Merge branch 'bug_8942' into 3.12-master
[koha.git] / members / memberentry.pl
1 #!/usr/bin/perl
2
3 # Copyright 2006 SAN OUEST PROVENCE et Paul POULAIN
4 # Copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
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
11 # version.
12 #
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.
16 #
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.
20
21 # pragma
22 use strict;
23 use warnings;
24
25 # external modules
26 use CGI;
27 # use Digest::MD5 qw(md5_base64);
28 use List::MoreUtils qw/uniq/;
29
30 # internal modules
31 use C4::Auth;
32 use C4::Context;
33 use C4::Output;
34 use C4::Members;
35 use C4::Members::Attributes;
36 use C4::Members::AttributeTypes;
37 use C4::Koha;
38 use C4::Dates qw/format_date format_date_in_iso/;
39 use C4::Input;
40 use C4::Log;
41 use C4::Letters;
42 use C4::Branch; # GetBranches
43 use C4::Form::MessagingPreferences;
44
45 use vars qw($debug);
46
47 BEGIN {
48         $debug = $ENV{DEBUG} || 0;
49 }
50         
51 my $input = new CGI;
52 ($debug) or $debug = $input->param('debug') || 0;
53 my %data;
54
55 my $dbh = C4::Context->dbh;
56
57 my ($template, $loggedinuser, $cookie)
58     = get_template_and_user({template_name => "members/memberentrygen.tmpl",
59            query => $input,
60            type => "intranet",
61            authnotrequired => 0,
62            flagsrequired => {borrowers => 1},
63            debug => ($debug) ? 1 : 0,
64        });
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;
84 my @errors;
85 my $default_city;
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
89 my $borrower_data;
90 my $NoUpdateLogin;
91 my $userenv = C4::Context->userenv;
92
93 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
94
95 my $minpw = C4::Context->preference('minPasswordLength');
96 $template->param("minPasswordLength" => $minpw);
97
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);    
103 }
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) {
110     next unless m/\w/o;
111         $template->param( "no$_" => 1);
112 }
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') || '';
119 if ($category_type){
120     $template->{VARS}->{'type_only'} = 1;
121 }
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);
128  }
129 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
130
131 # if a add or modify is requested => check validity of data.
132 %data = %$borrower_data if ($borrower_data);
133
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';
142         }
143     }
144
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} );
153     }
154     
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";
165         } else {
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_$_");
169         }
170     }
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})) )  {
173         $NoUpdateLogin = 1;
174     }
175 }
176
177 # remove keys from %newdata that ModMember() doesn't like
178 {
179     my @keys_to_delete = (
180         qr/^BorrowerMandatoryField$/,
181         qr/^category_type$/,
182         qr/^check_member$/,
183         qr/^destination$/,
184         qr/^nodouble$/,
185         qr/^op$/,
186         qr/^save$/,
187         qr/^select_roadtype$/,
188         qr/^updtype$/,
189         qr/^SMSnumber$/,
190         qr/^setting_extended_patron_attributes$/,
191         qr/^setting_messaging_prefs$/,
192         qr/^digest$/,
193         qr/^modify$/,
194         qr/^step$/,
195         qr/^\d+$/,
196         qr/^\d+-DAYS/,
197         qr/^patron_attr_/,
198     );
199     for my $regexp (@keys_to_delete) {
200         for (keys %newdata) {
201             delete($newdata{$_}) if /$regexp/;
202         }
203     }
204 }
205
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;
211     }
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(
215         $category_type_send,
216         ( $newdata{surname}     ? $newdata{surname}     : $data{surname} ),
217         ( $newdata{firstname}   ? $newdata{firstname}   : $data{firstname} ),
218         ( $newdata{dateofbirth} ? $newdata{dateofbirth} : $data{dateofbirth} )
219     );
220     if ( !$check_member ) {
221         $nodouble = 1;
222     }
223
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'};
228     }
229 }
230
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->{$_};
244                 }
245         }
246     }
247 }
248
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'));
254
255 #builds default userid
256 if ( (defined $newdata{'userid'}) && ($newdata{'userid'} eq '')){
257     $newdata{'userid'} = Generate_Userid($borrowernumber, $newdata{'firstname'}, $newdata{'surname'});
258 }
259   
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*$/;
265
266     if (checkcardnumber($newdata{cardnumber},$newdata{borrowernumber})){ 
267         push @errors, 'ERROR_cardnumber';
268     } 
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);
277         }
278     }
279   
280     if($newdata{surname} && C4::Context->preference('uppercasesurnames')) {
281         $newdata{'surname'} = uc($newdata{'surname'});
282     }
283
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";
289       }
290     }
291   }
292   # Check if the userid is unique
293   unless (Check_Userid($newdata{'userid'},$borrowernumber)) {
294     push @errors, "ERROR_login_exist";
295   }
296   
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) );
301
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}");
308         }
309     }
310   }
311 }
312
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);
317     }
318 }
319
320 if ( ( defined $input->param('SMSnumber') ) && ( $input->param('SMSnumber') ne $newdata{'mobile'} ) ) {
321     $newdata{smsalertnumber} = $input->param('SMSnumber');
322 }
323
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;
332
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
336             my $emailaddr;
337             if  (C4::Context->preference("AutoEmailPrimaryAddress") ne 'OFF'  && 
338                 $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} =~  /\w\@\w/ ) {
339                 $emailaddr =   $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} 
340             } 
341             elsif ($newdata{email} =~ /\w\@\w/) {
342                 $emailaddr = $newdata{email} 
343             }
344             elsif ($newdata{emailpro} =~ /\w\@\w/) {
345                 $emailaddr = $newdata{emailpro} 
346             }
347             elsif ($newdata{B_email} =~ /\w\@\w/) {
348                 $emailaddr = $newdata{B_email} 
349             }
350             # if we manage to find a valid email address, send notice 
351             if ($emailaddr) {
352                 $newdata{emailaddr} = $emailaddr;
353                 my $err;
354                 eval {
355                     $err = SendAlerts ( 'members', \%newdata, "ACCTDETAILS" );
356                 };
357                 if ( $@ ) {
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";
361                 } else {
362                     $template->{VARS}->{'info_alert'} = 1;
363                 }
364             }
365         }
366
367                 if ($data{'organisations'}){            
368                         # need to add the members organisations
369                         my @orgs=split(/\|/,$data{'organisations'});
370                         add_member_orgs($borrowernumber,\@orgs);
371                 }
372         if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
373             C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
374         }
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'});
377         }
378         } elsif ($op eq 'save'){ 
379                 if ($NoUpdateLogin) {
380                         delete $newdata{'password'};
381                         delete $newdata{'userid'};
382                 }
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);
389         }
390         if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
391             C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
392         }
393         }
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.
398 }
399
400 if ($delete){
401         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
402         exit;           # same as above
403 }
404
405 if ($nok or !$nodouble){
406     $op="add" if ($op eq "insert");
407     $op="modify" if ($op eq "save");
408     %data=%newdata; 
409     $template->param( updtype => ($op eq 'add' ?'I':'M'));      # used to check for $op eq "insert"... but we just changed $op!
410     unless ($step){  
411         $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1);
412     }  
413
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");
419             exit;
420         }
421     }
422 }
423 if ($op eq 'add'){
424     $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1);
425 }
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;
429     if ( $step == 4 ) {
430         $template->param( categorycode => $borrower_data->{'categorycode'} );
431     }
432 }
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'} = "";
437 }
438
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);
446 } else {
447     $template->param(  none => 1);
448 }
449
450 ##Now all the data to modify a member.
451 my ($categories,$labels)=ethnicitycategories();
452   
453 my $ethnicitycategoriescount=$#{$categories};
454 my $ethcatpopup;
455 if ($ethnicitycategoriescount>=0) {
456   $ethcatpopup = CGI::popup_menu(-name=>'ethnicity',
457         -id => 'ethnicity',
458         -tabindex=>'',
459         -values=>$categories,
460         -default=>$data{'ethnicity'},
461         -labels=>$labels);
462   $template->param(ethcatpopup => $ethcatpopup); # bad style, has to be fixed
463 }
464
465 my @typeloop;
466 my $no_categories = 1;
467 my $no_add;
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; }
472         my @categoryloop;
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)),
479                 };
480         }
481         my %typehash;
482         $typehash{'typename'}=$_;
483     my $typedescription = "typename_".$typehash{'typename'};
484         $typehash{'categoryloop'}=\@categoryloop;
485         push @typeloop,{'typename' => $_,
486         $typedescription => 1,
487           'categoryloop' => \@categoryloop};
488 }
489 $template->param('typeloop' => \@typeloop,
490         no_categories => $no_categories);
491 if($no_categories){ $no_add = 1; }
492 # test in city
493 if ( $guarantorid ) {
494     $select_city = getidcity($data{city});
495 }
496 ($default_city=$select_city) if ($step eq 0);
497 if (!defined($select_city) or $select_city eq '' ){
498         $default_city = &getidcity($data{'city'});
499 }
500
501 my $city_arrayref = GetCities();
502 if (@{$city_arrayref} ) {
503     $template->param( city_cgipopup => 1);
504
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;
509                 last;
510             }
511         }
512     }
513 }
514   
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',
520         -id => 'streettype',
521         -values=>$roadtypeid,
522         -labels=>$road_type,
523         -override => 1,
524         -default=>$default_roadtype
525         );  
526
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',
532         -id => 'btitle',
533         -values=>$borrowertitle,
534         -override => 1,
535         -default=>$default_borrowertitle
536         );    
537
538 my @relationships = split /,|\|/, C4::Context->preference('borrowerRelationship');
539 my @relshipdata;
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';
545   } else {
546     $row{'selected'}='';
547   }
548   push(@relshipdata, \%row);
549 }
550
551 my %flags = ( 'gonenoaddress' => ['gonenoaddress' ],
552         'lost'          => ['lost']);
553
554  
555 my @flagdata;
556 foreach (keys(%flags)) {
557         my $key = $_;
558         my %row =  ('key'   => $key,
559                     'name'  => $flags{$key}[0]);
560         if ($data{$key}) {
561                 $row{'yes'}=' checked';
562                 $row{'no'}='';
563     }
564         else {
565                 $row{'yes'}='';
566                 $row{'no'}=' checked';
567         }
568         push @flagdata,\%row;
569 }
570
571 #get Branches
572 my @branches;
573 my @select_branch;
574 my %select_branches;
575
576 my $onlymine=(C4::Context->preference('IndependantBranches') && 
577               C4::Context->userenv && 
578               C4::Context->userenv->{flags} % 2 !=1  && 
579               C4::Context->userenv->{branch}?1:0);
580               
581 my $branches=GetBranches($onlymine);
582 my $default;
583 my $CGIbranch;
584 for my $branch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
585     push @select_branch,$branch;
586     $select_branches{$branch} = $branches->{$branch}->{'branchname'};
587     $default = C4::Context->userenv->{'branch'} if (C4::Context->userenv && C4::Context->userenv->{'branch'});
588 }
589 if(scalar(@select_branch) > 0){
590 # --------------------------------------------------------------------------------------------------------
591   #in modify mod :default value from $CGIbranch comes from borrowers table
592   #in add mod: default value come from branches table (ip correspendence)
593 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || ( $op eq 'add' && $category_type eq 'C' ) )) {
594     $default = $data{'branchcode'};
595 }
596 $CGIbranch = CGI::scrolling_list(-id    => 'branchcode',
597             -name   => 'branchcode',
598             -values => \@select_branch,
599             -labels => \%select_branches,
600             -size   => 1,
601             -override => 1,  
602             -multiple =>0,
603             -default => $default,
604         );
605 }
606
607 if(!$CGIbranch){
608     $no_add = 1;
609     $template->param(no_branches => 1);
610 }
611 if($no_categories){
612     $no_add = 1;
613     $template->param(no_categories => 1);
614 }
615 $template->param(no_add => $no_add);
616 my $CGIorganisations;
617 my $member_of_institution;
618 if (C4::Context->preference("memberofinstitution")){
619     my $organisations=get_institutions();
620     my @orgs;
621     my %org_labels;
622     foreach my $organisation (keys %$organisations) {
623         push @orgs,$organisation;
624         $org_labels{$organisation}=$organisations->{$organisation}->{'surname'};
625     }
626     $member_of_institution=1;
627
628     $CGIorganisations = CGI::scrolling_list( -id => 'organisations',
629         -name     => 'organisations',
630         -labels   => \%org_labels,
631         -values   => \@orgs,
632         -size     => 5,
633         -multiple => 'true'
634
635     );
636 }
637
638 # --------------------------------------------------------------------------------------------------------
639
640 my $CGIsort = buildCGIsort("Bsort1","sort1",$data{'sort1'});
641 if ($CGIsort) {
642     $template->param(CGIsort1 => $CGIsort);
643 }
644 $template->param( sort1 => $data{'sort1'});             # shouldn't this be in an "else" statement like the 2nd one?
645
646 $CGIsort = buildCGIsort("Bsort2","sort2",$data{'sort2'});
647 if ($CGIsort) {
648     $template->param(CGIsort2 => $CGIsort);
649 } else {
650     $template->param( sort2 => $data{'sort2'});
651 }
652
653 if ($nok) {
654     foreach my $error (@errors) {
655         $template->param($error) || $template->param( $error => 1);
656     }
657     $template->param(nok => 1);
658 }
659   
660   #Formatting data for display    
661   
662 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
663   $data{'dateenrolled'}=C4::Dates->today('iso');
664 }
665 if ( $op eq 'duplicate' ) {
666     $data{'dateenrolled'} = C4::Dates->today('iso');
667     $data{'dateexpiry'} = GetExpiryDate( $data{'categorycode'}, $data{'dateenrolled'} );
668 }
669 if (C4::Context->preference('uppercasesurnames')) {
670         $data{'surname'}    =uc($data{'surname'}    );
671         $data{'contactname'}=uc($data{'contactname'});
672 }
673
674 $data{debarred} = C4::Overdues::CheckBorrowerDebarred($borrowernumber);
675 $data{datedebarred} = $data{debarred} if ( $data{debarred} && $data{debarred} ne "9999-12-31" );
676 foreach (qw(dateenrolled dateexpiry dateofbirth datedebarred)) {
677         $data{$_} = format_date($data{$_});     # back to syspref for display
678         $template->param( $_ => $data{$_});
679 }
680
681 if (C4::Context->preference('ExtendedPatronAttributes')) {
682     $template->param(ExtendedPatronAttributes => 1);
683     patron_attributes_form($template, $borrowernumber);
684 }
685
686 if (C4::Context->preference('EnhancedMessagingPreferences')) {
687     if ($op eq 'add') {
688         C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode }, $template);
689     } else {
690         C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
691     }
692     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
693     $template->param(SMSnumber     => defined $data{'smsalertnumber'} ? $data{'smsalertnumber'} : $data{'mobile'});
694     $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
695 }
696
697 $template->param( "showguarantor"  => ($category_type=~/A|I|S|X/) ? 0 : 1); # associate with step to know where you are
698 $debug and warn "memberentry step: $step";
699 $template->param(%data);
700 $template->param( "step_$step"  => 1) if $step; # associate with step to know where u are
701 $template->param(  step  => $step   ) if $step; # associate with step to know where u are
702 $template->param( debug  => $debug  ) if $debug;
703
704 $template->param(
705   BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
706   category_type => $category_type,#to know the category type of the borrower
707   select_city => $select_city,
708   "$category_type"  => 1,# associate with step to know where u are
709   destination   => $destination,#to know wher u come from and wher u must go in redirect
710   check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
711   "op$op"   => 1);
712
713 $template->param(CGIbranch=>$CGIbranch) if ($CGIbranch);
714 $template->param(
715   nodouble  => $nodouble,
716   borrowernumber  => $borrowernumber, #register number
717   guarantorid => ($borrower_data->{'guarantorid'} || $guarantorid),
718   ethcatpopup => $ethcatpopup,
719   relshiploop => \@relshipdata,
720   city_loop => $city_arrayref,
721   roadpopup => $roadpopup,  
722   borrotitlepopup => $borrotitlepopup,
723   guarantorinfo   => $guarantorinfo,
724   flagloop  => \@flagdata,
725   dateformat      => C4::Dates->new()->visual(),
726   C4::Context->preference('dateformat') => 1,
727   check_categorytype =>$check_categorytype,#to recover the category type with checkcategorytype function
728   category_type =>$category_type,
729   modify          => $modify,
730   nok     => $nok,#flag to konw if an error 
731   memberofinstution => $member_of_institution,
732   CGIorganisations => $CGIorganisations,
733   NoUpdateLogin =>  $NoUpdateLogin
734   );
735
736 if(defined($data{'flags'})){
737   $template->param(flags=>$data{'flags'});
738 }
739 if(defined($data{'contacttitle'})){
740   $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
741 }
742
743   
744 output_html_with_http_headers $input, $cookie, $template->output;
745
746 sub  parse_extended_patron_attributes {
747     my ($input) = @_;
748     my @patron_attr = grep { /^patron_attr_\d+$/ } $input->param();
749
750     my @attr = ();
751     my %dups = ();
752     foreach my $key (@patron_attr) {
753         my $value = $input->param($key);
754         next unless defined($value) and $value ne '';
755         my $password = $input->param("${key}_password");
756         my $code     = $input->param("${key}_code");
757         next if exists $dups{$code}->{$value};
758         $dups{$code}->{$value} = 1;
759         push @attr, { code => $code, value => $value, password => $password };
760     }
761     return \@attr;
762 }
763
764 sub patron_attributes_form {
765     my $template = shift;
766     my $borrowernumber = shift;
767
768     my @types = C4::Members::AttributeTypes::GetAttributeTypes();
769     if (scalar(@types) == 0) {
770         $template->param(no_patron_attribute_types => 1);
771         return;
772     }
773     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
774     my @classes = uniq( map {$_->{class}} @$attributes );
775     @classes = sort @classes;
776
777     # map patron's attributes into a more convenient structure
778     my %attr_hash = ();
779     foreach my $attr (@$attributes) {
780         push @{ $attr_hash{$attr->{code}} }, $attr;
781     }
782
783     my @attribute_loop = ();
784     my $i = 0;
785     my %items_by_class;
786     foreach my $type_code (map { $_->{code} } @types) {
787         my $attr_type = C4::Members::AttributeTypes->fetch($type_code);
788         my $entry = {
789             class             => $attr_type->class(),
790             code              => $attr_type->code(),
791             description       => $attr_type->description(),
792             repeatable        => $attr_type->repeatable(),
793             password_allowed  => $attr_type->password_allowed(),
794             category          => $attr_type->authorised_value_category(),
795             category_code     => $attr_type->category_code(),
796             password          => '',
797         };
798         if (exists $attr_hash{$attr_type->code()}) {
799             foreach my $attr (@{ $attr_hash{$attr_type->code()} }) {
800                 my $newentry = { map { $_ => $entry->{$_} } %$entry };
801                 $newentry->{value} = $attr->{value};
802                 $newentry->{password} = $attr->{password};
803                 $newentry->{use_dropdown} = 0;
804                 if ($attr_type->authorised_value_category()) {
805                     $newentry->{use_dropdown} = 1;
806                     $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category(), $attr->{value});
807                 }
808                 $i++;
809                 $newentry->{form_id} = "patron_attr_$i";
810                 push @{$items_by_class{$attr_type->class()}}, $newentry;
811             }
812         } else {
813             $i++;
814             my $newentry = { map { $_ => $entry->{$_} } %$entry };
815             if ($attr_type->authorised_value_category()) {
816                 $newentry->{use_dropdown} = 1;
817                 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category());
818             }
819             $newentry->{form_id} = "patron_attr_$i";
820             push @{$items_by_class{$attr_type->class()}}, $newentry;
821         }
822     }
823     while ( my ($class, @items) = each %items_by_class ) {
824         my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
825         push @attribute_loop, {
826             class => $class,
827             items => @items,
828             lib   => $lib,
829         }
830     }
831
832     $template->param(patron_attributes => \@attribute_loop);
833
834 }
835
836 # Local Variables:
837 # tab-width: 8
838 # End: