Merge remote branch 'kc/master' into new/enh/bug_5917
[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
29 # internal modules
30 use C4::Auth;
31 use C4::Context;
32 use C4::Output;
33 use C4::Members;
34 use C4::Members::Attributes;
35 use C4::Members::AttributeTypes;
36 use C4::Koha;
37 use C4::Dates qw/format_date format_date_in_iso/;
38 use C4::Input;
39 use C4::Log;
40 use C4::Letters;
41 use C4::Branch; # GetBranches
42 use C4::Form::MessagingPreferences;
43
44 use vars qw($debug);
45
46 BEGIN {
47         $debug = $ENV{DEBUG} || 0;
48 }
49         
50 my $input = new CGI;
51 ($debug) or $debug = $input->param('debug') || 0;
52 my %data;
53
54 my $dbh = C4::Context->dbh;
55
56 my ($template, $loggedinuser, $cookie)
57     = get_template_and_user({template_name => "members/memberentrygen.tmpl",
58            query => $input,
59            type => "intranet",
60            authnotrequired => 0,
61            flagsrequired => {borrowers => 1},
62            debug => ($debug) ? 1 : 0,
63        });
64 my $guarantorid    = $input->param('guarantorid');
65 my $borrowernumber = $input->param('borrowernumber');
66 my $actionType     = $input->param('actionType') || '';
67 my $modify         = $input->param('modify');
68 my $delete         = $input->param('delete');
69 my $op             = $input->param('op');
70 my $destination    = $input->param('destination');
71 my $cardnumber     = $input->param('cardnumber');
72 my $check_member   = $input->param('check_member');
73 my $nodouble       = $input->param('nodouble');
74 my $duplicate      = $input->param('duplicate');
75 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate');    # FIXME hack to represent fact that if we're
76                                      # modifying an existing patron, it ipso facto
77                                      # isn't a duplicate.  Marking FIXME because this
78                                      # script needs to be refactored.
79 my $select_city   = $input->param('select_city');
80 my $nok           = $input->param('nok');
81 my $guarantorinfo = $input->param('guarantorinfo');
82 my $step          = $input->param('step') || 0;
83 my @errors;
84 my $default_city;
85 # $check_categorytype contains the value of duplicate borrowers category type to redirect in good template in step =2
86 my $check_categorytype=$input->param('check_categorytype');
87 # NOTE: Alert for ethnicity and ethnotes fields, they are invalid in all borrowers form
88 my $borrower_data;
89 my $NoUpdateLogin;
90 my $userenv = C4::Context->userenv;
91
92 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
93
94 my $minpw = C4::Context->preference('minPasswordLength');
95 $template->param("minPasswordLength" => $minpw);
96
97 # function to designate mandatory fields (visually with css)
98 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
99 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
100 foreach (@field_check) {
101         $template->param( "mandatory$_" => 1);    
102 }
103 $template->param( "add" => 1 ) if ( $op eq 'add' );
104 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
105 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
106 ( $borrower_data = GetMember( 'borrowernumber' => $borrowernumber ) ) if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' );
107 my $categorycode  = $input->param('categorycode') || $borrower_data->{'categorycode'};
108 my $category_type = $input->param('category_type');
109 my $new_c_type = $category_type; #if we have input param, then we've already chosen the cat_type.
110 unless ($category_type or !($categorycode)){
111     my $borrowercategory = GetBorrowercategory($categorycode);
112     $category_type    = $borrowercategory->{'category_type'};
113     my $category_name = $borrowercategory->{'description'}; 
114     $template->param("categoryname"=>$category_name);
115 }
116 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
117
118 # if a add or modify is requested => check validity of data.
119 %data = %$borrower_data if ($borrower_data);
120
121 # initialize %newdata
122 my %newdata;                                                                             # comes from $input->param()
123 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
124     my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
125     foreach my $key (@names) {
126         if (defined $input->param($key)) {
127             $newdata{$key} = $input->param($key);
128             $newdata{$key} =~ s/\"/"/g unless $key eq 'borrowernotes' or $key eq 'opacnote';
129         }
130     }
131     my $dateobject = C4::Dates->new();
132     my $syspref = $dateobject->regexp();                # same syspref format for all 3 dates
133     my $iso     = $dateobject->regexp('iso');   #
134     foreach (qw(dateenrolled dateexpiry dateofbirth)) {
135         next unless exists $newdata{$_};
136         my $userdate = $newdata{$_} or next;
137         if ($userdate =~ /$syspref/) {
138             $newdata{$_} = format_date_in_iso($userdate);       # if they match syspref format, then convert to ISO
139         } elsif ($userdate =~ /$iso/) {
140             warn "Date $_ ($userdate) is already in ISO format";
141         } else {
142             ($userdate eq '0000-00-00') and warn "Data error: $_ is '0000-00-00'";
143             $template->param( "ERROR_$_" => 1 );        # else ERROR!
144             push(@errors,"ERROR_$_");
145         }
146     }
147   # check permission to modify login info.
148     if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) )  {
149         $NoUpdateLogin = 1;
150     }
151 }
152
153 # remove keys from %newdata that ModMember() doesn't like
154 {
155     my @keys_to_delete = (
156         qr/^BorrowerMandatoryField$/,
157         qr/^category_type$/,
158         qr/^check_member$/,
159         qr/^destination$/,
160         qr/^nodouble$/,
161         qr/^op$/,
162         qr/^save$/,
163         qr/^select_roadtype$/,
164         qr/^updtype$/,
165         qr/^SMSnumber$/,
166         qr/^setting_extended_patron_attributes$/,
167         qr/^setting_messaging_prefs$/,
168         qr/^digest$/,
169         qr/^modify$/,
170         qr/^step$/,
171         qr/^\d+$/,
172         qr/^\d+-DAYS/,
173         qr/^patron_attr_/,
174     );
175     for my $regexp (@keys_to_delete) {
176         for (keys %newdata) {
177             delete($newdata{$_}) if /$regexp/;
178         }
179     }
180 }
181
182 #############test for member being unique #############
183 if (($op eq 'insert') and !$nodouble){
184         my $category_type_send=$category_type if ($category_type eq 'I'); 
185         my $check_category; # recover the category code of the doublon suspect borrowers
186                         #   ($result,$categorycode) = checkuniquemember($collectivity,$surname,$firstname,$dateofbirth)
187         ($check_member,$check_category) = checkuniquemember(
188                         $category_type_send, 
189                         ($newdata{surname}     ? $newdata{surname}     : $data{surname}    ),
190                         ($newdata{firstname}   ? $newdata{firstname}   : $data{firstname}  ),
191                         ($newdata{dateofbirth} ? $newdata{dateofbirth} : $data{dateofbirth})
192                 );
193         if(!$check_member){
194             $nodouble = 1;
195         }
196   #   recover the category type if the borrowers is a doublon
197     if ($check_category) {
198       my $tmpborrowercategory=GetBorrowercategory($check_category);
199       $check_categorytype=$tmpborrowercategory->{'category_type'};
200     }   
201 }
202
203   #recover all data from guarantor address phone ,fax... 
204 if ( $guarantorid and ( $category_type eq 'C' || $category_type eq 'P' )) {
205     if (my $guarantordata=GetMember(borrowernumber => $guarantorid)) {
206         $guarantorinfo=$guarantordata->{'surname'}." , ".$guarantordata->{'firstname'};
207         if ( !defined($data{'contactname'}) or $data{'contactname'} eq '' or
208              $data{'contactname'} ne $guarantordata->{'surname'} ) {
209             $newdata{'contactfirstname'}= $guarantordata->{'firstname'};
210             $newdata{'contactname'}     = $guarantordata->{'surname'};
211             $newdata{'contacttitle'}    = $guarantordata->{'title'};
212                 foreach (qw(streetnumber address streettype address2
213                         zipcode country city phone phonepro mobile fax email emailpro branchcode)) {
214                         $newdata{$_} = $guarantordata->{$_};
215                 }
216         }
217     }
218 }
219
220 ###############test to take the right zipcode, country and city name ##############
221 if (!defined($guarantorid) or $guarantorid eq '' or $guarantorid eq '0') {
222     # set only if parameter was passed from the form
223     $newdata{'city'}    = $input->param('city')    if defined($input->param('city'));
224     $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
225     $newdata{'country'} = $input->param('country') if defined($input->param('country'));
226 }
227
228 #builds default userid
229 if ( (defined $newdata{'userid'}) && ($newdata{'userid'} eq '')){
230     $newdata{'userid'} = Generate_Userid($borrowernumber, $newdata{'firstname'}, $newdata{'surname'});
231 }
232   
233 $debug and warn join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
234 my $extended_patron_attributes = ();
235 if ($op eq 'save' || $op eq 'insert'){
236   if (checkcardnumber($newdata{cardnumber},$newdata{borrowernumber})){ 
237     push @errors, 'ERROR_cardnumber';
238   } 
239   my $dateofbirthmandatory = (scalar grep {$_ eq "dateofbirth"} @field_check) ? 1 : 0;
240   if ($newdata{dateofbirth} && $dateofbirthmandatory) {
241     my $age = GetAge($newdata{dateofbirth});
242     my $borrowercategory=GetBorrowercategory($newdata{'categorycode'});   
243         my ($low,$high) = ($borrowercategory->{'dateofbirthrequired'}, $borrowercategory->{'upperagelimit'});
244     if (($high && ($age > $high)) or ($age < $low)) {
245       push @errors, 'ERROR_age_limitations';
246           $template->param('ERROR_age_limitations' => "$low to $high");
247     }
248   }
249   
250     if($newdata{surname} && C4::Context->preference('uppercasesurnames')) {
251         $newdata{'surname'} = uc($newdata{'surname'});
252     }
253
254   if (C4::Context->preference("IndependantBranches")) {
255     if ($userenv && $userenv->{flags} % 2 != 1){
256       $debug and print STDERR "  $newdata{'branchcode'} : ".$userenv->{flags}.":".$userenv->{branch};
257       unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
258         push @errors, "ERROR_branch";
259       }
260     }
261   }
262   # Check if the userid is unique
263   unless (Check_Userid($newdata{'userid'},$borrowernumber)) {
264     push @errors, "ERROR_login_exist";
265   }
266   
267   my $password = $input->param('password');
268   push @errors, "ERROR_short_password" if( $password && $minpw && $password ne '****' && (length($password) < $minpw) );
269
270   if (C4::Context->preference('ExtendedPatronAttributes')) {
271     $extended_patron_attributes = parse_extended_patron_attributes($input);
272     foreach my $attr (@$extended_patron_attributes) {
273         unless (C4::Members::Attributes::CheckUniqueness($attr->{code}, $attr->{value}, $borrowernumber)) {
274             push @errors, "ERROR_extended_unique_id_failed";
275             $template->param(ERROR_extended_unique_id_failed => "$attr->{code}/$attr->{value}");
276         }
277     }
278   }
279 }
280
281 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
282     unless ($newdata{'dateexpiry'}){
283         my $arg2 = $newdata{'dateenrolled'} || C4::Dates->today('iso');
284         $newdata{'dateexpiry'} = GetExpiryDate($newdata{'categorycode'},$arg2);
285     }
286 }
287
288 if ( ( defined $input->param('SMSnumber') ) && ( $input->param('SMSnumber') ne $newdata{'mobile'} ) ) {
289     $newdata{smsalertnumber} = $input->param('SMSnumber');
290 }
291
292 ###  Error checks should happen before this line.
293 $nok = $nok || scalar(@errors);
294 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
295         $debug and warn "$op dates: " . join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
296         if ($op eq 'insert'){
297                 # we know it's not a duplicate borrowernumber or there would already be an error
298         $borrowernumber = &AddMember(%newdata);
299
300         # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
301         if ( C4::Context->preference("AutoEmailOpacUser") == 1 && $newdata{'userid'}  && $newdata{'password'}) {
302             #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
303             my $emailaddr;
304             if  (C4::Context->preference("AutoEmailPrimaryAddress") ne 'OFF'  && 
305                 $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} =~  /\w\@\w/ ) {
306                 $emailaddr =   $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} 
307             } 
308             elsif ($newdata{email} =~ /\w\@\w/) {
309                 $emailaddr = $newdata{email} 
310             }
311             elsif ($newdata{emailpro} =~ /\w\@\w/) {
312                 $emailaddr = $newdata{emailpro} 
313             }
314             elsif ($newdata{B_email} =~ /\w\@\w/) {
315                 $emailaddr = $newdata{B_email} 
316             }
317             # if we manage to find a valid email address, send notice 
318             if ($emailaddr) {
319                 $newdata{emailaddr} = $emailaddr;
320                 my $letter = getletter ('members', "ACCTDETAILS:$newdata{'branchcode'}") ;
321                 # if $branch notice fails, then email a default notice instead.
322                 $letter = getletter ('members', "ACCTDETAILS")  if !$letter;
323                 SendAlerts ( 'members' , \%newdata , $letter ) if $letter
324             }
325         } 
326
327                 if ($data{'organisations'}){            
328                         # need to add the members organisations
329                         my @orgs=split(/\|/,$data{'organisations'});
330                         add_member_orgs($borrowernumber,\@orgs);
331                 }
332         if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
333             C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
334         }
335         if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
336             C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
337         }
338         } elsif ($op eq 'save'){ 
339                 if ($NoUpdateLogin) {
340                         delete $newdata{'password'};
341                         delete $newdata{'userid'};
342                 }
343                 &ModMember(%newdata) unless scalar(keys %newdata) <= 1; # bug 4508 - avoid crash if we're not
344                                                                 # updating any columns in the borrowers table,
345                                                                 # which can happen if we're only editing the
346                                                                 # patron attributes or messaging preferences sections
347         if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
348             C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
349         }
350         if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
351             C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
352         }
353         }
354         print scalar ($destination eq "circ") ? 
355                 $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber") :
356                 $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber") ;
357         exit;           # You can only send 1 redirect!  After that, content or other headers don't matter.
358 }
359
360 if ($delete){
361         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
362         exit;           # same as above
363 }
364
365 if ($nok or !$nodouble){
366     $op="add" if ($op eq "insert");
367     $op="modify" if ($op eq "save");
368     %data=%newdata; 
369     $template->param( updtype => ($op eq 'add' ?'I':'M'));      # used to check for $op eq "insert"... but we just changed $op!
370     unless ($step){  
371         $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1);
372     }  
373
374 if (C4::Context->preference("IndependantBranches")) {
375     my $userenv = C4::Context->userenv;
376     if ($userenv->{flags} % 2 != 1 && $data{branchcode}){
377         unless ($userenv->{branch} eq $data{'branchcode'}){
378             print $input->redirect("/cgi-bin/koha/members/members-home.pl");
379             exit;
380         }
381     }
382 }
383 if ($op eq 'add'){
384     $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1);
385 }
386 if ($op eq "modify")  {
387     $template->param( updtype => 'M',modify => 1 );
388     $template->param( step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1) unless $step;
389 }
390 if ( $op eq "duplicate" ) {
391     $template->param( updtype => 'I' );
392     $template->param( step_1 => 1, step_2 => 1, step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1 ) unless $step;
393 }
394
395 # my $cardnumber=$data{'cardnumber'};
396 $data{'cardnumber'}=fixup_cardnumber($data{'cardnumber'}) if $op eq 'add';
397 if(!defined($data{'sex'})){
398     $template->param( none => 1);
399 } elsif($data{'sex'} eq 'F'){
400     $template->param( female => 1);
401 } elsif ($data{'sex'} eq 'M'){
402     $template->param(  male => 1);
403 } else {
404     $template->param(  none => 1);
405 }
406
407 ##Now all the data to modify a member.
408 my ($categories,$labels)=ethnicitycategories();
409   
410 my $ethnicitycategoriescount=$#{$categories};
411 my $ethcatpopup;
412 if ($ethnicitycategoriescount>=0) {
413   $ethcatpopup = CGI::popup_menu(-name=>'ethnicity',
414         -id => 'ethnicity',
415         -tabindex=>'',
416         -values=>$categories,
417         -default=>$data{'ethnicity'},
418         -labels=>$labels);
419   $template->param(ethcatpopup => $ethcatpopup); # bad style, has to be fixed
420 }
421
422 my @typeloop;
423 my $no_categories = 1;
424 my $no_add;
425 foreach (qw(C A S P I X)) {
426     my $action="WHERE category_type=?";
427         ($categories,$labels)=GetborCatFromCatType($_,$action);
428     if(scalar(@$categories) > 0){ $no_categories = 0; }
429         my @categoryloop;
430         foreach my $cat (@$categories){
431                 push @categoryloop,{'categorycode' => $cat,
432                           'categoryname' => $labels->{$cat},
433                           'categorycodeselected' => ((defined($borrower_data->{'categorycode'}) && 
434                                                      $cat eq $borrower_data->{'categorycode'}) 
435                                                      || (defined($categorycode) && $cat eq $categorycode)),
436                 };
437         }
438         my %typehash;
439         $typehash{'typename'}=$_;
440     my $typedescription = "typename_".$typehash{'typename'};
441         $typehash{'categoryloop'}=\@categoryloop;
442         push @typeloop,{'typename' => $_,
443         $typedescription => 1,
444           'categoryloop' => \@categoryloop};
445 }
446 $template->param('typeloop' => \@typeloop,
447         no_categories => $no_categories);
448 if($no_categories){ $no_add = 1; }
449 # test in city
450 if ( $guarantorid ) {
451     $select_city = getidcity($data{city});
452 }
453 ($default_city=$select_city) if ($step eq 0);
454 if (!defined($select_city) or $select_city eq '' ){
455         $default_city = &getidcity($data{'city'});
456 }
457
458 my $city_arrayref = GetCities();
459 if (@{$city_arrayref} ) {
460     $template->param( city_cgipopup => 1);
461
462     if ($default_city) { # flag the current or default val
463         for my $city ( @{$city_arrayref} ) {
464             if ($default_city == $city->{cityid}) {
465                 $city->{selected} = 1;
466                 last;
467             }
468         }
469     }
470 }
471   
472 my $default_roadtype;
473 $default_roadtype=$data{'streettype'} ;
474 my($roadtypeid,$road_type)=GetRoadTypes();
475   $template->param( road_cgipopup => 1) if ($roadtypeid );
476 my $roadpopup = CGI::popup_menu(-name=>'streettype',
477         -id => 'streettype',
478         -values=>$roadtypeid,
479         -labels=>$road_type,
480         -override => 1,
481         -default=>$default_roadtype
482         );  
483
484 my $default_borrowertitle;
485 $default_borrowertitle=$data{'title'} ;
486 my($borrowertitle)=GetTitles();
487 $template->param( title_cgipopup => 1) if ($borrowertitle);
488 my $borrotitlepopup = CGI::popup_menu(-name=>'title',
489         -id => 'btitle',
490         -values=>$borrowertitle,
491         -override => 1,
492         -default=>$default_borrowertitle
493         );    
494
495 my @relationships = split /,|\|/, C4::Context->preference('BorrowerRelationship');
496 my @relshipdata;
497 while (@relationships) {
498   my $relship = shift @relationships || '';
499   my %row = ('relationship' => $relship);
500   if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
501     $row{'selected'}=' selected';
502   } else {
503     $row{'selected'}='';
504   }
505   push(@relshipdata, \%row);
506 }
507
508 my %flags = ( 'gonenoaddress' => ['gonenoaddress' ],
509         'lost'          => ['lost'],
510         'debarred'      => ['debarred']);
511
512  
513 my @flagdata;
514 foreach (keys(%flags)) {
515         my $key = $_;
516         my %row =  ('key'   => $key,
517                     'name'  => $flags{$key}[0]);
518         if ($data{$key}) {
519                 $row{'yes'}=' checked';
520                 $row{'no'}='';
521     }
522         else {
523                 $row{'yes'}='';
524                 $row{'no'}=' checked';
525         }
526         push @flagdata,\%row;
527 }
528
529 #get Branches
530 my @branches;
531 my @select_branch;
532 my %select_branches;
533
534 my $onlymine=(C4::Context->preference('IndependantBranches') && 
535               C4::Context->userenv && 
536               C4::Context->userenv->{flags} % 2 !=1  && 
537               C4::Context->userenv->{branch}?1:0);
538               
539 my $branches=GetBranches($onlymine);
540 my $default;
541 my $CGIbranch;
542 for my $branch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
543     push @select_branch,$branch;
544     $select_branches{$branch} = $branches->{$branch}->{'branchname'};
545     $default = C4::Context->userenv->{'branch'} if (C4::Context->userenv && C4::Context->userenv->{'branch'});
546 }
547 if(scalar(@select_branch) > 0){
548 # --------------------------------------------------------------------------------------------------------
549   #in modify mod :default value from $CGIbranch comes from borrowers table
550   #in add mod: default value come from branches table (ip correspendence)
551 $default=$data{'branchcode'}  if ($op eq 'modify' || ($op eq 'add' && $category_type eq 'C'));
552 $CGIbranch = CGI::scrolling_list(-id    => 'branchcode',
553             -name   => 'branchcode',
554             -values => \@select_branch,
555             -labels => \%select_branches,
556             -size   => 1,
557             -override => 1,  
558             -multiple =>0,
559             -default => $default,
560         );
561 }
562
563 if(!$CGIbranch){
564     $no_add = 1;
565     $template->param(no_branches => 1);
566 }
567 if($no_categories){
568     $no_add = 1;
569     $template->param(no_categories => 1);
570 }
571 $template->param(no_add => $no_add);
572 my $CGIorganisations;
573 my $member_of_institution;
574 if (C4::Context->preference("memberofinstitution")){
575     my $organisations=get_institutions();
576     my @orgs;
577     my %org_labels;
578     foreach my $organisation (keys %$organisations) {
579         push @orgs,$organisation;
580         $org_labels{$organisation}=$organisations->{$organisation}->{'surname'};
581     }
582     $member_of_institution=1;
583
584     $CGIorganisations = CGI::scrolling_list( -id => 'organisations',
585         -name     => 'organisations',
586         -labels   => \%org_labels,
587         -values   => \@orgs,
588         -size     => 5,
589         -multiple => 'true'
590
591     );
592 }
593
594 # --------------------------------------------------------------------------------------------------------
595
596 my $CGIsort = buildCGIsort("Bsort1","sort1",$data{'sort1'});
597 if ($CGIsort) {
598     $template->param(CGIsort1 => $CGIsort);
599 }
600 $template->param( sort1 => $data{'sort1'});             # shouldn't this be in an "else" statement like the 2nd one?
601
602 $CGIsort = buildCGIsort("Bsort2","sort2",$data{'sort2'});
603 if ($CGIsort) {
604     $template->param(CGIsort2 => $CGIsort);
605 } else {
606     $template->param( sort2 => $data{'sort2'});
607 }
608
609 if ($nok) {
610     foreach my $error (@errors) {
611         $template->param($error) || $template->param( $error => 1);
612     }
613     $template->param(nok => 1);
614 }
615   
616   #Formatting data for display    
617   
618 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
619   $data{'dateenrolled'}=C4::Dates->today('iso');
620 }
621 if (C4::Context->preference('uppercasesurnames')) {
622         $data{'surname'}    =uc($data{'surname'}    );
623         $data{'contactname'}=uc($data{'contactname'});
624 }
625 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
626         $data{$_} = format_date($data{$_});     # back to syspref for display
627         $template->param( $_ => $data{$_});
628 }
629
630 if (C4::Context->preference('ExtendedPatronAttributes')) {
631     $template->param(ExtendedPatronAttributes => 1);
632     patron_attributes_form($template, $borrowernumber);
633 }
634
635 if (C4::Context->preference('EnhancedMessagingPreferences')) {
636     if ($op eq 'add') {
637         C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode }, $template);
638     } else {
639         C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
640     }
641     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
642     $template->param(SMSnumber     => defined $data{'smsalertnumber'} ? $data{'smsalertnumber'} : $data{'mobile'});
643 }
644
645 $template->param( "showguarantor"  => ($category_type=~/A|I|S|X/) ? 0 : 1); # associate with step to know where you are
646 $debug and warn "memberentry step: $step";
647 $template->param(%data);
648 $template->param( "step_$step"  => 1) if $step; # associate with step to know where u are
649 $template->param(  step  => $step   ) if $step; # associate with step to know where u are
650 $template->param( debug  => $debug  ) if $debug;
651
652 $template->param(
653   BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
654   category_type => $category_type,#to know the category type of the borrower
655   DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
656   select_city => $select_city,
657   "$category_type"  => 1,# associate with step to know where u are
658   destination   => $destination,#to know wher u come from and wher u must go in redirect
659   check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
660   "op$op"   => 1);
661
662 $template->param(CGIbranch=>$CGIbranch) if ($CGIbranch);
663 $template->param(
664   nodouble  => $nodouble,
665   borrowernumber  => $borrowernumber, #register number
666   guarantorid => (($borrower_data->{'guarantorid'})) ? $borrower_data->{'guarantorid'} : $guarantorid,
667   ethcatpopup => $ethcatpopup,
668   relshiploop => \@relshipdata,
669   city_loop => $city_arrayref,
670   roadpopup => $roadpopup,  
671   borrotitlepopup => $borrotitlepopup,
672   guarantorinfo   => $guarantorinfo,
673   flagloop  => \@flagdata,
674   dateformat      => C4::Dates->new()->visual(),
675   C4::Context->preference('dateformat') => 1,
676   check_categorytype =>$check_categorytype,#to recover the category type with checkcategorytype function
677   category_type =>$category_type,
678   modify          => $modify,
679   nok     => $nok,#flag to konw if an error 
680   memberofinstution => $member_of_institution,
681   CGIorganisations => $CGIorganisations,
682   NoUpdateLogin =>  $NoUpdateLogin
683   );
684
685 if(defined($data{'flags'})){
686   $template->param(flags=>$data{'flags'});
687 }
688 if(defined($data{'contacttitle'})){
689   $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
690 }
691
692   
693 output_html_with_http_headers $input, $cookie, $template->output;
694
695 sub  parse_extended_patron_attributes {
696     my ($input) = @_;
697     my @patron_attr = grep { /^patron_attr_\d+$/ } $input->param();
698
699     my @attr = ();
700     my %dups = ();
701     foreach my $key (@patron_attr) {
702         my $value = $input->param($key);
703         next unless defined($value) and $value ne '';
704         my $password = $input->param("${key}_password");
705         my $code     = $input->param("${key}_code");
706         next if exists $dups{$code}->{$value};
707         $dups{$code}->{$value} = 1;
708         push @attr, { code => $code, value => $value, password => $password };
709     }
710     return \@attr;
711 }
712
713 sub patron_attributes_form {
714     my $template = shift;
715     my $borrowernumber = shift;
716
717     my @types = C4::Members::AttributeTypes::GetAttributeTypes();
718     if (scalar(@types) == 0) {
719         $template->param(no_patron_attribute_types => 1);
720         return;
721     }
722     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
723
724     # map patron's attributes into a more convenient structure
725     my %attr_hash = ();
726     foreach my $attr (@$attributes) {
727         push @{ $attr_hash{$attr->{code}} }, $attr;
728     }
729
730     my @attribute_loop = ();
731     my $i = 0;
732     foreach my $type_code (map { $_->{code} } @types) {
733         my $attr_type = C4::Members::AttributeTypes->fetch($type_code);
734         my $entry = {
735             code              => $attr_type->code(),
736             description       => $attr_type->description(),
737             repeatable        => $attr_type->repeatable(),
738             password_allowed  => $attr_type->password_allowed(),
739             category          => $attr_type->authorised_value_category(),
740             password          => '',
741         };
742         if (exists $attr_hash{$attr_type->code()}) {
743             foreach my $attr (@{ $attr_hash{$attr_type->code()} }) {
744                 my $newentry = { map { $_ => $entry->{$_} } %$entry };
745                 $newentry->{value} = $attr->{value};
746                 $newentry->{password} = $attr->{password};
747                 $newentry->{use_dropdown} = 0;
748                 if ($attr_type->authorised_value_category()) {
749                     $newentry->{use_dropdown} = 1;
750                     $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category(), $attr->{value});
751                 }
752                 $i++;
753                 $newentry->{form_id} = "patron_attr_$i";
754                 #use Data::Dumper; die Dumper($entry) if  $entry->{use_dropdown};
755                 push @attribute_loop, $newentry;
756             }
757         } else {
758             $i++;
759             my $newentry = { map { $_ => $entry->{$_} } %$entry };
760             if ($attr_type->authorised_value_category()) {
761                 $newentry->{use_dropdown} = 1;
762                 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category());
763             }
764             $newentry->{form_id} = "patron_attr_$i";
765             push @attribute_loop, $newentry;
766         }
767     }
768     $template->param(patron_attributes => \@attribute_loop);
769
770 }
771
772 # Local Variables:
773 # tab-width: 8
774 # End: