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