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