Fixing previous fix.
[koha_fer] / members / memberentry.pl
1 #!/usr/bin/perl
2 # $Id$
3
4 # Copyright 2006 SAN OUEST PROVENCE et Paul POULAIN
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 # pragma
22 use strict;
23
24 # external modules
25 use Date::Calc qw/Today/;
26 use CGI;
27 use Digest::MD5 qw(md5_base64);
28
29 # internal modules
30 use C4::Auth;
31 use C4::Context;
32 use C4::Output;
33 use C4::Members;
34 use C4::Koha;
35 use C4::Date;
36 use C4::Input;
37 use C4::Log;
38 use C4::Branch; # GetBranches
39
40 my $input = new CGI;
41 my %data;
42
43 my $dbh = C4::Context->dbh;
44
45
46
47 my $step=$input->param('step') || 0;
48 my ($template, $loggedinuser, $cookie)
49     = get_template_and_user({template_name => "members/memberentrygen.tmpl",
50            query => $input,
51            type => "intranet",
52            authnotrequired => 0,
53            flagsrequired => {borrowers => 1},
54            debug => 1,
55            });
56 my $guarantorid=$input->param('guarantorid');
57 my $borrowernumber=$input->param('borrowernumber');
58 my $actionType=$input->param('actionType') || '';
59 my $modify=$input->param('modify');
60 my $delete=$input->param('delete');
61 my $op=$input->param('op');
62 my $destination=$input->param('destination');
63 my $cardnumber=$input->param('cardnumber');
64 my $check_member=$input->param('check_member');
65 my $name_city=$input->param('name_city');
66 my $nodouble=$input->param('nodouble');
67 my $select_city=$input->param('select_city');
68 my $nok=$input->param('nok');
69 my $guarantorinfo=$input->param('guarantorinfo');
70 my @errors;
71 my $default_city;
72 # $check_categorytype contains the value of duplicate borrowers category type to redirect in good template in step =2
73 my $check_categorytype=$input->param('check_categorytype');
74 # NOTE: Alert for ethnicity and ethnotes fields, they are unvalided in all borrowers form
75 my $borrower_data;
76
77
78 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
79
80 #function  to automatic setup the mandatory  fields (visual with css)
81 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
82 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
83 foreach (@field_check) {
84 $template->param( "mandatory$_" => 1);    
85 }
86 $template->param("add"=>1) if ($op eq 'add');
87 $template->param("checked" => 1) if ($nodouble eq 1);
88 my $categorycode=$input->param('categorycode');
89 ($borrower_data=GetMember($borrowernumber,'borrowernumber')) if ($op eq 'modify' or $op eq 'save');
90 $categorycode=$borrower_data->{'categorycode'} unless $categorycode;
91 my $category_type;
92 $category_type = $input->param('category_type');
93 unless ($category_type or !($categorycode)){
94   my $borrowercategory= GetBorrowercategory($categorycode);
95   $category_type = $borrowercategory->{'category_type'};
96 }
97 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
98
99 # if a add or modify is requested => check validity of data.
100 %data= %$borrower_data if ($borrower_data);
101
102 my %newdata;
103 if ($op eq 'insert' || $op eq 'modify' || $op eq 'save') {
104   my @names=($borrower_data?keys %$borrower_data:$input->param());
105   foreach my $key (@names){
106     $newdata{$key}=$input->param($key)||'';
107     $newdata{$key}=~ s/\"/"/gg unless $key eq 'borrowernotes' or $key eq 'opacnote';
108   }
109
110
111   # WARN : some tests must be done whatever the step, because the librarian can click on any tab.
112   #############test for member being unique #############
113   if ($op eq 'insert'){
114           my $category_type_send=$category_type if ($category_type eq 'I'); 
115           my $check_category; # recover the category code of the doublon suspect borrowers
116           ($check_member,$check_category)= checkuniquemember($category_type_send,($newdata{'surname'}?$newdata{'surname'}:$data{'surname'}),($newdata{'firstname'}?$newdata{'firstname'}:$data{'firstname'}),($newdata{'dateofbirth'}?format_date_in_iso($newdata{'dateofbirth'}):$data{'dateofbirth'}));
117           
118   #   recover the category type if the borrowers is a doublon 
119           my $tmpborrowercategory=GetBorrowercategory($check_category);
120           $check_categorytype=$tmpborrowercategory->{'category_type'};
121   }
122
123   #recover all data from guarantor address phone ,fax... 
124   if ($category_type eq 'C' and $guarantorid ne '' ){
125     my $guarantordata=GetMember($guarantorid);
126     $guarantorinfo=$guarantordata->{'surname'}." , ".$guarantordata->{'firstname'};
127     if (($data{'contactname'} eq '' or $data{'contactname'} ne $guarantordata->{'surname'})) {
128       $newdata{'contactfirstname'}=$guarantordata->{'firstname'}; 
129       $newdata{'contactname'}=$guarantordata->{'surname'};
130       $newdata{'contacttitle'}=$guarantordata->{'title'};  
131       map {$newdata{$_}=$guarantordata->{$_}}('streetnumber','address','streettype','address2','zipcode','city','phone','phonepro','mobile','fax','email','emailpro');
132     }
133   }
134
135   # CHECKS step by step
136 # STEP 1
137     if ($op eq 'insert' && checkcardnumber($cardnumber)){ 
138       push @errors, 'ERROR_cardnumber';
139       $nok = 1;
140     } 
141     ###############test to take the right zipcode and city name ##############
142     if ( $guarantorid eq ''){
143       if ($select_city){
144         my ($borrower_city,$borrower_zipcode)=&getzipnamecity($select_city);
145         $newdata{'city'}= $borrower_city;
146         $newdata{'zipcode'}=$borrower_zipcode;
147         }
148     }
149     my $dateofbirthmandatory=0;
150     map {$dateofbirthmandatory=1 if $_ eq "dateofbirth"} @field_check;
151     if ($category_type ne 'I' && $newdata{dateofbirth} && $dateofbirthmandatory) {
152       my $age = GetAge(format_date_in_iso($data{dateofbirth}));
153       my $borrowercategory=GetBorrowercategory($data{'categorycode'});   
154       if (($age > $borrowercategory->{'upperagelimit'}) or ($age < $borrowercategory->{'dateofbirthrequired'})) {
155         push @errors, 'ERROR_age_limitations';
156         $nok = 1;
157       }
158     }
159
160 # STEP 2
161     if ( ($newdata{'userid'} eq '')){
162       my $onefirstnameletter=substr($data{'firstname'},0,1);
163       my $fivesurnameletter=substr($data{'surname'},0,5);
164       $newdata{'userid'}=lc($onefirstnameletter.$fivesurnameletter);
165     }
166 #   }
167 # STEP 3
168   if ($op eq 'insert'){
169     # this value show if the login and password are been used
170     my $loginexist=checkuserpassword($borrowernumber,$data{'userid'},$data{'password'});
171     # test to know if u must save or create the borrowers
172     if ($loginexist) {
173       push @errors, "ERROR_login_exist";
174       $nok=1;
175     } else {
176       $borrowernumber = &AddMember(%newdata);
177         if ($data{'organisations'}){            
178           # need to add the members organisations
179           my @orgs=split(/\|/,$data{'organisations'});
180           add_member_orgs($borrowernumber,\@orgs);
181         }
182     }
183
184     unless ($nok) {
185       if($destination eq "circ"){
186         print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$data{'cardnumber'}");
187       } else {
188         if ($loginexist == 0) {
189         print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");
190         }
191       }
192     }
193   }
194
195   if (C4::Context->preference("IndependantBranches")) {
196     my $userenv = C4::Context->userenv;
197     if ($userenv->{flags} != 1){
198       unless ($userenv->{branch} eq $data{'branchcode'}){
199         push @errors, "ERROR_branch";
200         $nok=1;
201       }
202     }
203   }
204   if ($op eq 'modify' ){
205     unless ($data{'dateexpiry'}){
206       my $today= sprintf('%04d-%02d-%02d', Today());
207       $data{'dateexpiry'} = GetExpiryDate($data{'categorycode'},$today);
208     }
209   }
210 # }
211
212 if ($op eq 'save'){
213   # test to know if another user have the same password and same login    
214   &ModMember(%newdata);    
215   print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");
216 }
217
218 if ($delete){
219   print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
220 }
221 if ($nok){
222   $op="add" if ($op eq "insert");
223   $op="modify" if ($op eq "save");
224   %data=%newdata; 
225   $template->param( updtype => ($op eq "insert"?'I':'M'),step_1=>1,step_2=>1,step_3=>1,allsteps=>1);
226
227 #  else {  # this else goes down the whole script
228   # retrieve previous values : either in DB or in CGI, in case of errors in values
229 #   my $data;
230 # # test to now if u add or modify a borrower (modify =>to take all carateristic of the borrowers)
231 #   if (!$op and !$data{'surname'}) {
232 #     $data=GetMember($borrowernumber,'borrowernumber');
233 #     %data=%$data;
234 #   }
235   if (C4::Context->preference("IndependantBranches")) {
236     my $userenv = C4::Context->userenv;
237     if ($userenv->{flags} != 1 && $data{branchcode}){
238       unless ($userenv->{branch} eq $data{'branchcode'}){
239         print $input->redirect("/cgi-bin/koha/members/members-home.pl");
240       }
241     }
242   }
243   if ($op eq 'add'){
244     $template->param( updtype => 'I',step_1=>1,step_2=>1,step_3=>1,allsteps=>1);
245   } 
246   if ($op eq "modify")  {
247     $template->param( updtype => 'M');
248     $template->param( step_1=>1,step_2=>1,step_3=>1,allsteps=>1) unless $step;
249   }
250 # my $cardnumber=$data{'cardnumber'};
251   $data{'cardnumber'}=fixup_cardnumber($data{'cardnumber'}) if $op eq 'add';
252   if ($data{'sex'} eq 'F'){
253     $template->param(female => 1);
254   }
255   my ($categories,$labels)=ethnicitycategories();
256     
257   my $ethnicitycategoriescount=$#{$categories};
258   my $ethcatpopup;
259   if ($ethnicitycategoriescount>=0) {
260     $ethcatpopup = CGI::popup_menu(-name=>'ethnicity',
261           -id => 'ethnicity',
262           -tabindex=>'',
263           -values=>$categories,
264           -default=>$data{'ethnicity'},
265           -labels=>$labels);
266     $template->param(ethcatpopup => $ethcatpopup); # bad style, has to be fixed
267   }
268   
269   
270   my $action="WHERE category_type=?";
271   ($categories,$labels)=GetborCatFromCatType($category_type,$action);
272   
273   if(scalar(@$categories)){
274       #if you modify the borrowers you must have the right value for his category code
275   (my $default_category=$data{'categorycode'}) if ($op  eq 'modify');
276       my $catcodepopup = CGI::popup_menu(
277           -name=>'categorycode',
278       -id => 'categorycode',
279       -values=>$categories,
280         -labels=>$labels,
281       -default=>$default_category
282       );
283       $template->param(catcodepopup=>$catcodepopup);
284   }
285   #test in city
286   $select_city=getidcity($data{'city'}) if ($guarantorid ne '0');
287   ($default_city=$select_city) if ($step eq 0);
288   if ($select_city eq '' ){
289   my $selectcity=&getidcity($data{'city'});
290   $default_city=$selectcity;
291   }
292   my($cityid,$name_city)=GetCities();
293   $template->param( city_cgipopup => 1) if ($cityid );
294   my $citypopup = CGI::popup_menu(-name=>'select_city',
295           -id => 'select_city',
296           -values=>$cityid,
297           -labels=>$name_city,
298 #             -override => 1,
299           -default=>$default_city
300           );  
301   
302   my $default_roadtype;
303   $default_roadtype=$data{'streettype'} ;
304   my($roadtypeid,$road_type)=GetRoadTypes();
305     $template->param( road_cgipopup => 1) if ($roadtypeid );
306   my $roadpopup = CGI::popup_menu(-name=>'streettype',
307           -id => 'streettype',
308           -values=>$roadtypeid,
309             -labels=>$road_type,
310             -override => 1,
311           -default=>$default_roadtype
312           );  
313
314   my $default_borrowertitle;
315   $default_borrowertitle=$data{'title'} ;
316   my($borrowertitle)=GetTitles();
317   my $borrotitlepopup = CGI::popup_menu(-name=>'title',
318                 -id => 'btitle',
319                 -values=>$borrowertitle,
320                 -override => 1,
321                 -default=>$default_borrowertitle
322           );    
323
324
325   my @relationships = split /,|\|/,C4::Context->preference('BorrowerRelationship');
326   my @relshipdata;
327   while (@relationships) {
328     my $relship = shift @relationships || '';
329     my %row = ('relationship' => $relship);
330     if ($data{'relationship'} eq $relship) {
331       $row{'selected'}=' selected';
332     } else {
333       $row{'selected'}='';
334     }
335     push(@relshipdata, \%row);
336   }
337   my %flags = ( 'gonenoaddress' => ['gonenoaddress', 'Gone no address '],
338           'lost'          => ['lost', 'Lost'],
339           'debarred'      => ['debarred', 'Debarred']);
340
341   my @flagdata;
342   foreach (keys(%flags)) {
343   my $key = $_;
344   my %row =  ('key'   => $key,
345       'name'  => $flags{$key}[0],
346       'html'  => $flags{$key}[1]);
347   if ($data{$key}) {
348     $row{'yes'}=' checked';
349     $row{'no'}='';
350   } else {
351     $row{'yes'}='';
352     $row{'no'}=' checked';
353   }
354   push(@flagdata, \%row);
355   }
356
357   if ($modify){
358   $template->param( modify => 1 );
359   }
360
361   #Convert dateofbirth to correct format
362   my @branches;
363   my @select_branch;
364   my %select_branches;
365   my $branches=GetBranches();
366   my $default;
367   # -----------------------------------------------------
368   #  the value of ip from the branches hash table
369 #     my $select_ip;
370   # $ip is the ip of user when is connect to koha 
371 #     my $ip = $ENV{'REMOTE_ADDR'};
372   
373   # -----------------------------------------------------
374   foreach my $branch (keys %$branches) {
375     if ((not C4::Context->preference("IndependantBranches")) || (C4::Context->userenv->{'flags'} == 1)) {
376       push @select_branch, $branch;
377       $select_branches{$branch} = $branches->{$branch}->{'branchname'};
378       $default=C4::Context->userenv->{'branch'};
379     } else {
380       push @select_branch,$branch if ($branch eq C4::Context->userenv->{'branch'});
381       $select_branches{$branch} = $branches->{$branch}->{'branchname'} if ($branch eq C4::Context->userenv->{'branch'});
382       $default = C4::Context->userenv->{'branch'};
383     }
384   }
385 # --------------------------------------------------------------------------------------------------------
386   #in modify mod :default value from $CGIbranch comes from borrowers table
387   #in add mod: default value come from branches table (ip correspendence)
388   $default=$data{'branchcode'}  if ($op eq 'modify');
389   my $CGIbranch = CGI::scrolling_list(-id    => 'branchcode',
390              -name   => 'branchcode',
391              -values => \@select_branch,
392              -labels => \%select_branches,
393              -size   => 1,
394              -override => 1,  
395                    -multiple =>0,
396              -default => $default,
397           );
398   my $CGIorganisations;
399   my $member_of_institution;
400   if (C4::Context->preference("memberofinstitution")){
401      my $organisations=get_institutions();
402      my @orgs;
403      my %org_labels;
404      foreach my $organisation (keys %$organisations) {
405          push @orgs,$organisation;
406          $org_labels{$organisation}=$organisations->{$organisation}->{'surname'};
407      }
408      $member_of_institution=1;
409      
410      $CGIorganisations = CGI::scrolling_list( -id => 'organisations',
411          -name     => 'organisations',
412          -labels   => \%org_labels,
413          -values   => \@orgs,
414          -size     => 5,
415          -multiple => 'true'
416
417          
418      );
419   }
420
421
422 # --------------------------------------------------------------------------------------------------------
423
424   my $CGIsort1 = buildCGIsort("Bsort1","sort1",$data{'sort1'});
425   if ($CGIsort1) {
426     $template->param(CGIsort1 => $CGIsort1);
427     $template->param( sort1 => $data{'sort1'});
428   } else {
429     $template->param( sort1 => $data{'sort1'});
430   }
431   
432   my $CGIsort2 = buildCGIsort("Bsort2","sort2",$data{'sort2'});
433   if ($CGIsort2) {
434     $template->param(CGIsort2 =>$CGIsort2);
435   } else {
436     $template->param( sort2 => $data{'sort2'});
437   }
438   # increase step to see next page
439   if ($nok) {
440       foreach my $error (@errors) {
441           $template->param( $error => 1);
442       }
443         $template->param(nok => 1);
444   }
445 #   else {
446 #       $step++ if $op eq 'add';
447 #   }
448   #Formatting data for display    
449   
450   if ($data{'dateenrolled'} eq ''){
451     my $today= sprintf('%04d-%02d-%02d', Today());
452     #insert ,in field "dateenrolled" , the current date
453     $data{'dateenrolled'}=$today;
454     $data{'dateexpiry'} = GetExpiryDate($data{'categorycode'},$today);
455   }
456   
457   $data{'surname'}=uc($data{'surname'});
458   $data{'firstname'}=ucfirst(lc $data{'firstname'});
459   $data{'dateenrolled'}=format_date($data{'dateenrolled'});
460   $data{'dateexpiry'}=format_date($data{'dateexpiry'});
461   $data{'contactname'}=uc($data{'contactname'});
462   $data{'contactfirstname'}= ucfirst( lc $data{'contactfirstname'});
463   $data{'dateofbirth'} = format_date($data{'dateofbirth'});
464
465 #   warn "$step";
466   $template->param(%data);
467   $template->param(
468     BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
469     category_type => $category_type,#to know the category type of the borrower
470         DHTMLcalendar_dateformat => get_date_format_string_for_DHTMLcalendar(),
471     select_city => $select_city,
472     "step_$step"  => 1,# associate with step to know where u are
473     "$category_type"  => 1,# associate with step to know where u are
474     step    => $step,
475     destination   => $destination,#to know wher u come from and wher u must go in redirect
476     check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
477     flags   =>$data{'flags'},   
478     "op$op"   => 1,
479     nodouble  => $nodouble,
480     borrowernumber  => $borrowernumber,#register number
481     "contacttitle_".$data{'contacttitle'} => "SELECTED" ,
482     guarantorid => $guarantorid,
483     ethcatpopup => $ethcatpopup,
484     relshiploop => \@relshipdata,
485     citypopup => $citypopup,
486     roadpopup => $roadpopup,  
487     borrotitlepopup => $borrotitlepopup,
488     guarantorinfo   => $guarantorinfo,
489     flagloop  => \@flagdata,
490     dateformat      => display_date_format(),
491     check_categorytype =>$check_categorytype,#to recover the category type with checkcategorytype function
492     modify          => $modify,
493     nok     => $nok,#flag to konw if an error 
494     CGIbranch => $CGIbranch,
495           memberofinstution => $member_of_institution,
496           CGIorganisations => $CGIorganisations,
497     
498     );
499   
500   output_html_with_http_headers $input, $cookie, $template->output;
501 # }
502
503 # Local Variables:
504 # tab-width: 8
505 # End: