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