Bug 14504: (QA followup) use TestBuilder, remove do_not_commit
[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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 # pragma
22 use strict;
23 use warnings;
24
25 # external modules
26 use CGI qw ( -utf8 );
27 use List::MoreUtils qw/uniq/;
28 use Digest::MD5 qw(md5_base64);
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::Log;
39 use C4::Letters;
40 use C4::Branch; # GetBranches
41 use C4::Form::MessagingPreferences;
42 use Koha::Patron::Debarments;
43 use Koha::Cities;
44 use Koha::DateUtils;
45 use Koha::Token;
46 use Email::Valid;
47 use Module::Load;
48 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
49     load Koha::NorwegianPatronDB, qw( NLGetSyncDataFromBorrowernumber );
50 }
51 use Koha::SMS::Providers;
52
53 use vars qw($debug);
54
55 BEGIN {
56         $debug = $ENV{DEBUG} || 0;
57 }
58         
59 my $input = new CGI;
60 ($debug) or $debug = $input->param('debug') || 0;
61 my %data;
62
63 my $dbh = C4::Context->dbh;
64
65 my ($template, $loggedinuser, $cookie)
66     = get_template_and_user({template_name => "members/memberentrygen.tt",
67            query => $input,
68            type => "intranet",
69            authnotrequired => 0,
70            flagsrequired => {borrowers => 1},
71            debug => ($debug) ? 1 : 0,
72        });
73
74 if ( C4::Context->preference('SMSSendDriver') eq 'Email' ) {
75     my @providers = Koha::SMS::Providers->search();
76     $template->param( sms_providers => \@providers );
77 }
78
79 my $guarantorid    = $input->param('guarantorid');
80 my $borrowernumber = $input->param('borrowernumber');
81 my $actionType     = $input->param('actionType') || '';
82 my $modify         = $input->param('modify');
83 my $delete         = $input->param('delete');
84 my $op             = $input->param('op');
85 my $destination    = $input->param('destination');
86 my $cardnumber     = $input->param('cardnumber');
87 my $check_member   = $input->param('check_member');
88 my $nodouble       = $input->param('nodouble');
89 my $duplicate      = $input->param('duplicate');
90 my $quickadd       = $input->param('quickadd');
91 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate');    # FIXME hack to represent fact that if we're
92                                      # modifying an existing patron, it ipso facto
93                                      # isn't a duplicate.  Marking FIXME because this
94                                      # script needs to be refactored.
95 my $nok           = $input->param('nok');
96 my $guarantorinfo = $input->param('guarantorinfo');
97 my $step          = $input->param('step') || 0;
98 my @errors;
99 my $borrower_data;
100 my $NoUpdateLogin;
101 my $userenv = C4::Context->userenv;
102
103
104 ## Deal with debarments
105 $template->param(
106     debarments => GetDebarments( { borrowernumber => $borrowernumber } ) );
107 my @debarments_to_remove = $input->multi_param('remove_debarment');
108 foreach my $d ( @debarments_to_remove ) {
109     DelDebarment( $d );
110 }
111 if ( $input->param('add_debarment') ) {
112
113     my $expiration = $input->param('debarred_expiration');
114     $expiration =
115       $expiration
116       ? output_pref(
117         { 'dt' => dt_from_string($expiration), 'dateformat' => 'iso' } )
118       : undef;
119
120     AddDebarment(
121         {
122             borrowernumber => $borrowernumber,
123             type           => 'MANUAL',
124             comment        => scalar $input->param('debarred_comment'),
125             expiration     => $expiration,
126         }
127     );
128 }
129
130 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
131
132 my $minpw = C4::Context->preference('minPasswordLength');
133 $template->param("minPasswordLength" => $minpw);
134
135 # function to designate mandatory fields (visually with css)
136 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
137 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
138 foreach (@field_check) {
139         $template->param( "mandatory$_" => 1);    
140 }
141 # function to designate unwanted fields
142 my $check_BorrowerUnwantedField=C4::Context->preference("BorrowerUnwantedField");
143 @field_check=split(/\|/,$check_BorrowerUnwantedField);
144 foreach (@field_check) {
145     next unless m/\w/o;
146         $template->param( "no$_" => 1);
147 }
148 $template->param( "add" => 1 ) if ( $op eq 'add' );
149 $template->param( "quickadd" => 1 ) if ( $quickadd );
150 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
151 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
152 ( $borrower_data = GetMember( 'borrowernumber' => $borrowernumber ) ) if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' );
153 my $categorycode  = $input->param('categorycode') || $borrower_data->{'categorycode'};
154 my $category_type = $input->param('category_type') || '';
155 unless ($category_type or !($categorycode)){
156     my $borrowercategory = GetBorrowercategory($categorycode);
157     $category_type    = $borrowercategory->{'category_type'};
158     my $category_name = $borrowercategory->{'description'}; 
159     $template->param("categoryname"=>$category_name);
160 }
161 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
162
163 # if a add or modify is requested => check validity of data.
164 %data = %$borrower_data if ($borrower_data);
165
166 # initialize %newdata
167 my %newdata;                                                                             # comes from $input->param()
168 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
169     my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
170     foreach my $key (@names) {
171         if (defined $input->param($key)) {
172             $newdata{$key} = $input->param($key);
173             $newdata{$key} =~ s/\"/&quot;/g unless $key eq 'borrowernotes' or $key eq 'opacnote';
174         }
175     }
176
177     foreach (qw(dateenrolled dateexpiry dateofbirth)) {
178         next unless exists $newdata{$_};
179         my $userdate = $newdata{$_} or next;
180
181         my $formatteddate = eval { output_pref({ dt => dt_from_string( $userdate ), dateformat => 'iso', dateonly => 1 } ); };
182         if ( $formatteddate ) {
183             $newdata{$_} = $formatteddate;
184         } else {
185             ($userdate eq '0000-00-00') and warn "Data error: $_ is '0000-00-00'";
186             $template->param( "ERROR_$_" => 1 );
187             push(@errors,"ERROR_$_");
188         }
189     }
190   # check permission to modify login info.
191     if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) )  {
192         $NoUpdateLogin = 1;
193     }
194 }
195
196 # remove keys from %newdata that ModMember() doesn't like
197 {
198     my @keys_to_delete = (
199         qr/^BorrowerMandatoryField$/,
200         qr/^category_type$/,
201         qr/^check_member$/,
202         qr/^destination$/,
203         qr/^nodouble$/,
204         qr/^op$/,
205         qr/^save$/,
206         qr/^updtype$/,
207         qr/^SMSnumber$/,
208         qr/^setting_extended_patron_attributes$/,
209         qr/^setting_messaging_prefs$/,
210         qr/^digest$/,
211         qr/^modify$/,
212         qr/^step$/,
213         qr/^\d+$/,
214         qr/^\d+-DAYS/,
215         qr/^patron_attr_/,
216     );
217     for my $regexp (@keys_to_delete) {
218         for (keys %newdata) {
219             delete($newdata{$_}) if /$regexp/;
220         }
221     }
222 }
223
224 # Test uniqueness of surname, firstname and dateofbirth
225 if ( ( $op eq 'insert' ) and !$nodouble ) {
226     my $conditions;
227     $conditions->{surname} = $newdata{surname} if $newdata{surname};
228     if ( $category_type ne 'I' ) {
229         $conditions->{firstname} = $newdata{firstname} if $newdata{firstname};
230         $conditions->{dateofbirth} = $newdata{dateofbirth} if $newdata{dateofbirth};
231     }
232     $nodouble = 1;
233     my $patrons = Koha::Patrons->search($conditions);
234     if ( $patrons->count > 0) {
235         $nodouble = 0;
236         $check_member = $patrons->next->borrowernumber;
237     }
238 }
239
240   #recover all data from guarantor address phone ,fax... 
241 if ( $guarantorid ) {
242     if (my $guarantordata=GetMember(borrowernumber => $guarantorid)) {
243         $category_type = $guarantordata->{categorycode} eq 'I' ? 'P' : 'C';
244         $guarantorinfo=$guarantordata->{'surname'}." , ".$guarantordata->{'firstname'};
245         $newdata{'contactfirstname'}= $guarantordata->{'firstname'};
246         $newdata{'contactname'}     = $guarantordata->{'surname'};
247         $newdata{'contacttitle'}    = $guarantordata->{'title'};
248         if ( $op eq 'add' ) {
249                 foreach (qw(streetnumber address streettype address2
250                         zipcode country city state phone phonepro mobile fax email emailpro branchcode
251                         B_streetnumber B_streettype B_address B_address2
252                         B_city B_state B_zipcode B_country B_email B_phone)) {
253                         $newdata{$_} = $guarantordata->{$_};
254                 }
255         }
256     }
257 }
258
259 ###############test to take the right zipcode, country and city name ##############
260 # set only if parameter was passed from the form
261 $newdata{'city'}    = $input->param('city')    if defined($input->param('city'));
262 $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
263 $newdata{'country'} = $input->param('country') if defined($input->param('country'));
264
265 # builds default userid
266 # userid input text may be empty or missing because of syspref BorrowerUnwantedField
267 if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ ) {
268     if ( ( defined $newdata{'firstname'} ) && ( defined $newdata{'surname'} ) ) {
269         # Full page edit, firstname and surname input zones are present
270         $newdata{'userid'} = Generate_Userid( $borrowernumber, $newdata{'firstname'}, $newdata{'surname'} );
271     }
272     elsif ( ( defined $data{'firstname'} ) && ( defined $data{'surname'} ) ) {
273         # Partial page edit (access through "Details"/"Library details" tab), firstname and surname input zones are not used
274         # Still, if the userid field is erased, we can create a new userid with available firstname and surname
275         $newdata{'userid'} = Generate_Userid( $borrowernumber, $data{'firstname'}, $data{'surname'} );
276     }
277     else {
278         $newdata{'userid'} = $data{'userid'};
279     }
280 }
281   
282 $debug and warn join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
283 my $extended_patron_attributes = ();
284 if ($op eq 'save' || $op eq 'insert'){
285
286     die "Wrong CSRF token"
287         unless Koha::Token->new->check_csrf({
288             id     => C4::Context->userenv->{id},
289             secret => md5_base64( C4::Context->config('pass') ),
290             token  => scalar $input->param('csrf_token'),
291         });
292
293     # If the cardnumber is blank, treat it as null.
294     $newdata{'cardnumber'} = undef if $newdata{'cardnumber'} =~ /^\s*$/;
295
296     if (my $error_code = checkcardnumber($newdata{cardnumber},$newdata{borrowernumber})){
297         push @errors, $error_code == 1
298             ? 'ERROR_cardnumber_already_exists'
299             : $error_code == 2
300                 ? 'ERROR_cardnumber_length'
301                 : ()
302     }
303
304     if ( $newdata{dateofbirth} ) {
305         my $age = GetAge($newdata{dateofbirth});
306         my $borrowercategory=GetBorrowercategory($newdata{'categorycode'});   
307         my ($low,$high) = ($borrowercategory->{'dateofbirthrequired'}, $borrowercategory->{'upperagelimit'});
308         if (($high && ($age > $high)) or ($age < $low)) {
309             push @errors, 'ERROR_age_limitations';
310             $template->param( age_low => $low);
311             $template->param( age_high => $high);
312         }
313     }
314   
315     if($newdata{surname} && C4::Context->preference('uppercasesurnames')) {
316         $newdata{'surname'} = uc($newdata{'surname'});
317     }
318
319   if (C4::Context->preference("IndependentBranches")) {
320     unless ( C4::Context->IsSuperLibrarian() ){
321       $debug and print STDERR "  $newdata{'branchcode'} : ".$userenv->{flags}.":".$userenv->{branch};
322       unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
323         push @errors, "ERROR_branch";
324       }
325     }
326   }
327   # Check if the 'userid' is unique. 'userid' might not always be present in
328   # the edited values list when editing certain sub-forms. Get it straight
329   # from the DB if absent.
330   my $userid = $newdata{ userid } // $borrower_data->{ userid };
331   unless (Check_Userid($userid,$borrowernumber)) {
332     push @errors, "ERROR_login_exist";
333   }
334   
335   my $password = $input->param('password');
336   my $password2 = $input->param('password2');
337   push @errors, "ERROR_password_mismatch" if ( $password ne $password2 );
338   push @errors, "ERROR_short_password" if( $password && $minpw && $password ne '****' && (length($password) < $minpw) );
339
340   # Validate emails
341   my $emailprimary = $input->param('email');
342   my $emailsecondary = $input->param('emailpro');
343   my $emailalt = $input->param('B_email');
344
345   if ($emailprimary) {
346       push (@errors, "ERROR_bad_email") if (!Email::Valid->address($emailprimary));
347   }
348   if ($emailsecondary) {
349       push (@errors, "ERROR_bad_email_secondary") if (!Email::Valid->address($emailsecondary));
350   }
351   if ($emailalt) {
352       push (@errors, "ERROR_bad_email_alternative") if (!Email::Valid->address($emailalt));
353   }
354
355   if (C4::Context->preference('ExtendedPatronAttributes')) {
356     $extended_patron_attributes = parse_extended_patron_attributes($input);
357     foreach my $attr (@$extended_patron_attributes) {
358         unless (C4::Members::Attributes::CheckUniqueness($attr->{code}, $attr->{value}, $borrowernumber)) {
359             my $attr_info = C4::Members::AttributeTypes->fetch($attr->{code});
360             push @errors, "ERROR_extended_unique_id_failed";
361             $template->param(
362                 ERROR_extended_unique_id_failed_code => $attr->{code},
363                 ERROR_extended_unique_id_failed_value => $attr->{value},
364                 ERROR_extended_unique_id_failed_description => $attr_info->description()
365             );
366         }
367     }
368   }
369 }
370
371 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
372     unless ($newdata{'dateexpiry'}){
373         my $arg2 = $newdata{'dateenrolled'} || output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
374         $newdata{'dateexpiry'} = GetExpiryDate($newdata{'categorycode'},$arg2);
375     }
376 }
377
378 # BZ 14683: Do not mixup mobile [read: other phone] with smsalertnumber
379 my $sms = $input->param('SMSnumber');
380 if ( defined $sms ) {
381     $newdata{smsalertnumber} = $sms;
382 }
383
384 ###  Error checks should happen before this line.
385 $nok = $nok || scalar(@errors);
386 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
387         $debug and warn "$op dates: " . join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
388         if ($op eq 'insert'){
389                 # we know it's not a duplicate borrowernumber or there would already be an error
390         $borrowernumber = &AddMember(%newdata);
391         $newdata{'borrowernumber'} = $borrowernumber;
392
393         # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
394         if ( C4::Context->preference("AutoEmailOpacUser") == 1 && $newdata{'userid'}  && $newdata{'password'}) {
395             #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
396             my $emailaddr;
397             if  (C4::Context->preference("AutoEmailPrimaryAddress") ne 'OFF'  && 
398                 $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} =~  /\w\@\w/ ) {
399                 $emailaddr =   $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} 
400             } 
401             elsif ($newdata{email} =~ /\w\@\w/) {
402                 $emailaddr = $newdata{email} 
403             }
404             elsif ($newdata{emailpro} =~ /\w\@\w/) {
405                 $emailaddr = $newdata{emailpro} 
406             }
407             elsif ($newdata{B_email} =~ /\w\@\w/) {
408                 $emailaddr = $newdata{B_email} 
409             }
410             # if we manage to find a valid email address, send notice 
411             if ($emailaddr) {
412                 $newdata{emailaddr} = $emailaddr;
413                 my $err;
414                 eval {
415                     $err = SendAlerts ( 'members', \%newdata, "ACCTDETAILS" );
416                 };
417                 if ( $@ ) {
418                     $template->param(error_alert => $@);
419                 } elsif ( ref($err) eq "HASH" && defined $err->{error} and $err->{error} eq "no_email" ) {
420                     $template->{VARS}->{'error_alert'} = "no_email";
421                 } else {
422                     $template->{VARS}->{'info_alert'} = 1;
423                 }
424             }
425         }
426
427         if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
428             C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
429         }
430         if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
431             C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template, 1, $newdata{'categorycode'});
432         }
433         # Try to do the live sync with the Norwegian national patron database, if it is enabled
434         if ( exists $data{'borrowernumber'} && C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
435             NLSync({ 'borrowernumber' => $borrowernumber });
436         }
437         } elsif ($op eq 'save'){ 
438                 if ($NoUpdateLogin) {
439                         delete $newdata{'password'};
440                         delete $newdata{'userid'};
441                 }
442         &ModMember(%newdata) unless scalar(keys %newdata) <= 1; # bug 4508 - avoid crash if we're not
443                                                                 # updating any columns in the borrowers table,
444                                                                 # which can happen if we're only editing the
445                                                                 # patron attributes or messaging preferences sections
446         if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
447             C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
448         }
449         if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
450             C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
451         }
452         }
453         print scalar ($destination eq "circ") ? 
454                 $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber") :
455                 $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber") ;
456         exit;           # You can only send 1 redirect!  After that, content or other headers don't matter.
457 }
458
459 if ($delete){
460         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
461         exit;           # same as above
462 }
463
464 if ($nok or !$nodouble){
465     $op="add" if ($op eq "insert");
466     $op="modify" if ($op eq "save");
467     %data=%newdata; 
468     $template->param( updtype => ($op eq 'add' ?'I':'M'));      # used to check for $op eq "insert"... but we just changed $op!
469     unless ($step){  
470         $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1);
471     }  
472
473 if (C4::Context->preference("IndependentBranches")) {
474     my $userenv = C4::Context->userenv;
475     if ( !C4::Context->IsSuperLibrarian() && $data{'branchcode'} ) {
476         unless ($userenv->{branch} eq $data{'branchcode'}){
477             print $input->redirect("/cgi-bin/koha/members/members-home.pl");
478             exit;
479         }
480     }
481 }
482 if ($op eq 'add'){
483     $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1);
484 }
485 if ($op eq "modify")  {
486     $template->param( updtype => 'M',modify => 1 );
487     $template->param( step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1) unless $step;
488     if ( $step == 4 ) {
489         $template->param( categorycode => $borrower_data->{'categorycode'} );
490     }
491     # Add sync data to the user data
492     if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
493         my $sync = NLGetSyncDataFromBorrowernumber( $borrowernumber );
494         if ( $sync ) {
495             $template->param(
496                 sync => $sync->sync,
497             );
498         }
499     }
500 }
501 if ( $op eq "duplicate" ) {
502     $template->param( updtype => 'I' );
503     $template->param( step_1 => 1, step_2 => 1, step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1 ) unless $step;
504     $data{'cardnumber'} = "";
505 }
506
507 $data{'cardnumber'}=fixup_cardnumber($data{'cardnumber'}) if ( ( $op eq 'add' ) or ( $op eq 'duplicate' ) );
508 if(!defined($data{'sex'})){
509     $template->param( none => 1);
510 } elsif($data{'sex'} eq 'F'){
511     $template->param( female => 1);
512 } elsif ($data{'sex'} eq 'M'){
513     $template->param(  male => 1);
514 } else {
515     $template->param(  none => 1);
516 }
517
518 ##Now all the data to modify a member.
519
520 my @typeloop;
521 my $no_categories = 1;
522 my $no_add;
523 foreach (qw(C A S P I X)) {
524     my $action="WHERE category_type=?";
525     my ($categories,$labels)=GetborCatFromCatType($_,$action);
526     if(scalar(@$categories) > 0){ $no_categories = 0; }
527         my @categoryloop;
528         foreach my $cat (@$categories){
529                 push @categoryloop,{'categorycode' => $cat,
530                           'categoryname' => $labels->{$cat},
531                           'categorycodeselected' => ((defined($borrower_data->{'categorycode'}) && 
532                                                      $cat eq $borrower_data->{'categorycode'}) 
533                                                      || (defined($categorycode) && $cat eq $categorycode)),
534                 };
535         }
536         my %typehash;
537         $typehash{'typename'}=$_;
538     my $typedescription = "typename_".$typehash{'typename'};
539         $typehash{'categoryloop'}=\@categoryloop;
540         push @typeloop,{'typename' => $_,
541         $typedescription => 1,
542           'categoryloop' => \@categoryloop};
543 }
544 $template->param('typeloop' => \@typeloop,
545         no_categories => $no_categories);
546 if($no_categories){ $no_add = 1; }
547
548
549 my $cities = Koha::Cities->search( {}, { order_by => 'city_name' } );
550 my $roadtypes = C4::Koha::GetAuthorisedValues( 'ROADTYPE' );
551 $template->param(
552     roadtypes => $roadtypes,
553     cities    => $cities,
554 );
555
556 my $default_borrowertitle = '';
557 unless ( $op eq 'duplicate' ) { $default_borrowertitle=$data{'title'} }
558
559 my @relationships = split /,|\|/, C4::Context->preference('borrowerRelationship');
560 my @relshipdata;
561 while (@relationships) {
562   my $relship = shift @relationships || '';
563   my %row = ('relationship' => $relship);
564   if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
565     $row{'selected'}=' selected';
566   } else {
567     $row{'selected'}='';
568   }
569   push(@relshipdata, \%row);
570 }
571
572 my %flags = ( 'gonenoaddress' => ['gonenoaddress' ],
573         'lost'          => ['lost']);
574
575  
576 my @flagdata;
577 foreach (keys(%flags)) {
578         my $key = $_;
579         my %row =  ('key'   => $key,
580                     'name'  => $flags{$key}[0]);
581         if ($data{$key}) {
582                 $row{'yes'}=' checked';
583                 $row{'no'}='';
584     }
585         else {
586                 $row{'yes'}='';
587                 $row{'no'}=' checked';
588         }
589         push @flagdata,\%row;
590 }
591
592 # get Branch Loop
593 # in modify mod: userbranch value for GetBranchesLoop() comes from borrowers table
594 # in add    mod: userbranch value come from branches table (ip correspondence)
595
596 my $userbranch = '';
597 if (C4::Context->userenv && C4::Context->userenv->{'branch'}) {
598     $userbranch = C4::Context->userenv->{'branch'};
599 }
600
601 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || $op eq 'duplicate' || ( $op eq 'add' && $category_type eq 'C' ) )) {
602     $userbranch = $data{'branchcode'};
603 }
604
605 my $branchloop = GetBranchesLoop( $userbranch );
606
607 if( !$branchloop ){
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 # --------------------------------------------------------------------------------------------------------
617
618 $template->param( sort1 => $data{'sort1'});
619 $template->param( sort2 => $data{'sort2'});
620
621 if ($nok) {
622     foreach my $error (@errors) {
623         $template->param($error) || $template->param( $error => 1);
624     }
625     $template->param(nok => 1);
626 }
627   
628   #Formatting data for display    
629   
630 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
631   $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
632 }
633 if ( $op eq 'duplicate' ) {
634     $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
635     $data{'dateexpiry'} = GetExpiryDate( $data{'categorycode'}, $data{'dateenrolled'} );
636 }
637 if (C4::Context->preference('uppercasesurnames')) {
638     $data{'surname'} &&= uc( $data{'surname'} );
639     $data{'contactname'} &&= uc( $data{'contactname'} );
640 }
641
642 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
643     if ( $data{$_} ) {
644        $data{$_} = eval { output_pref({ dt => dt_from_string( $data{$_} ), dateonly => 1 } ); };  # back to syspref for display
645     }
646     $template->param( $_ => $data{$_});
647 }
648
649 if (C4::Context->preference('ExtendedPatronAttributes')) {
650     $template->param(ExtendedPatronAttributes => 1);
651     patron_attributes_form($template, $borrowernumber);
652 }
653
654 if (C4::Context->preference('EnhancedMessagingPreferences')) {
655     if ($op eq 'add') {
656         C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode }, $template);
657     } else {
658         C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
659     }
660     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
661     $template->param(SMSnumber     => $data{'smsalertnumber'} );
662     $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
663 }
664
665 $template->param( "showguarantor"  => ($category_type=~/A|I|S|X/) ? 0 : 1); # associate with step to know where you are
666 $debug and warn "memberentry step: $step";
667 $template->param(%data);
668 $template->param( "step_$step"  => 1) if $step; # associate with step to know where u are
669 $template->param(  step  => $step   ) if $step; # associate with step to know where u are
670
671 $template->param(
672   BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
673   category_type => $category_type,#to know the category type of the borrower
674   "$category_type"  => 1,# associate with step to know where u are
675   destination   => $destination,#to know wher u come from and wher u must go in redirect
676   check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
677   "op$op"   => 1);
678
679 $template->param( branchloop => $branchloop ) if ( $branchloop );
680 $template->param(
681   nodouble  => $nodouble,
682   borrowernumber  => $borrowernumber, #register number
683   guarantorid => ($borrower_data->{'guarantorid'} || $guarantorid),
684   relshiploop => \@relshipdata,
685   btitle=> $default_borrowertitle,
686   guarantorinfo   => $guarantorinfo,
687   flagloop  => \@flagdata,
688   category_type =>$category_type,
689   modify          => $modify,
690   nok     => $nok,#flag to know if an error
691   NoUpdateLogin =>  $NoUpdateLogin,
692   );
693
694 # Generate CSRF token
695 $template->param(
696     csrf_token => Koha::Token->new->generate_csrf(
697         {   id     => C4::Context->userenv->{id},
698             secret => md5_base64( C4::Context->config('pass') ),
699         }
700     ),
701 );
702
703 if(defined($data{'flags'})){
704   $template->param(flags=>$data{'flags'});
705 }
706 if(defined($data{'contacttitle'})){
707   $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
708 }
709
710
711 my ( $min, $max ) = C4::Members::get_cardnumber_length();
712 if ( defined $min ) {
713     $template->param(
714         minlength_cardnumber => $min,
715         maxlength_cardnumber => $max
716     );
717 }
718
719 output_html_with_http_headers $input, $cookie, $template->output;
720
721 sub  parse_extended_patron_attributes {
722     my ($input) = @_;
723     my @patron_attr = grep { /^patron_attr_\d+$/ } $input->multi_param();
724
725     my @attr = ();
726     my %dups = ();
727     foreach my $key (@patron_attr) {
728         my $value = $input->param($key);
729         next unless defined($value) and $value ne '';
730         my $code     = $input->param("${key}_code");
731         next if exists $dups{$code}->{$value};
732         $dups{$code}->{$value} = 1;
733         push @attr, { code => $code, value => $value };
734     }
735     return \@attr;
736 }
737
738 sub patron_attributes_form {
739     my $template = shift;
740     my $borrowernumber = shift;
741
742     my @types = C4::Members::AttributeTypes::GetAttributeTypes();
743     if (scalar(@types) == 0) {
744         $template->param(no_patron_attribute_types => 1);
745         return;
746     }
747     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
748     my @classes = uniq( map {$_->{class}} @$attributes );
749     @classes = sort @classes;
750
751     # map patron's attributes into a more convenient structure
752     my %attr_hash = ();
753     foreach my $attr (@$attributes) {
754         push @{ $attr_hash{$attr->{code}} }, $attr;
755     }
756
757     my @attribute_loop = ();
758     my $i = 0;
759     my %items_by_class;
760     foreach my $type_code (map { $_->{code} } @types) {
761         my $attr_type = C4::Members::AttributeTypes->fetch($type_code);
762         my $entry = {
763             class             => $attr_type->class(),
764             code              => $attr_type->code(),
765             description       => $attr_type->description(),
766             repeatable        => $attr_type->repeatable(),
767             category          => $attr_type->authorised_value_category(),
768             category_code     => $attr_type->category_code(),
769         };
770         if (exists $attr_hash{$attr_type->code()}) {
771             foreach my $attr (@{ $attr_hash{$attr_type->code()} }) {
772                 my $newentry = { %$entry };
773                 $newentry->{value} = $attr->{value};
774                 $newentry->{use_dropdown} = 0;
775                 if ($attr_type->authorised_value_category()) {
776                     $newentry->{use_dropdown} = 1;
777                     $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category(), $attr->{value});
778                 }
779                 $i++;
780                 $newentry->{form_id} = "patron_attr_$i";
781                 push @{$items_by_class{$attr_type->class()}}, $newentry;
782             }
783         } else {
784             $i++;
785             my $newentry = { %$entry };
786             if ($attr_type->authorised_value_category()) {
787                 $newentry->{use_dropdown} = 1;
788                 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category());
789             }
790             $newentry->{form_id} = "patron_attr_$i";
791             push @{$items_by_class{$attr_type->class()}}, $newentry;
792         }
793     }
794     while ( my ($class, @items) = each %items_by_class ) {
795         my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
796         push @attribute_loop, {
797             class => $class,
798             items => @items,
799             lib   => $lib,
800         }
801     }
802
803     $template->param(patron_attributes => \@attribute_loop);
804
805 }
806
807 # Local Variables:
808 # tab-width: 8
809 # End: