Fixing error on duplicate entry process.
[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   $template->param( "op$op" => 1);
223   %data=%newdata; 
224   $template->param( updtype => ($op eq "insert"?'I':'M'),step_1=>1,step_2=>1,step_3=>1,allsteps=>1);
225
226 #  else {  # this else goes down the whole script
227   # retrieve previous values : either in DB or in CGI, in case of errors in values
228 #   my $data;
229 # # test to now if u add or modify a borrower (modify =>to take all carateristic of the borrowers)
230 #   if (!$op and !$data{'surname'}) {
231 #     $data=GetMember($borrowernumber,'borrowernumber');
232 #     %data=%$data;
233 #   }
234   if (C4::Context->preference("IndependantBranches")) {
235     my $userenv = C4::Context->userenv;
236     if ($userenv->{flags} != 1 && $data{branchcode}){
237       unless ($userenv->{branch} eq $data{'branchcode'}){
238         print $input->redirect("/cgi-bin/koha/members/members-home.pl");
239       }
240     }
241   }
242   if ($op eq 'add'){
243     $template->param( updtype => 'I',step_1=>1,step_2=>1,step_3=>1,allsteps=>1);
244   } 
245   if ($op eq "modify")  {
246     $template->param( updtype => 'M');
247     $template->param( step_1=>1,step_2=>1,step_3=>1,allsteps=>1) unless $step;
248   }
249 # my $cardnumber=$data{'cardnumber'};
250   $data{'cardnumber'}=fixup_cardnumber($data{'cardnumber'}) if $op eq 'add';
251   if ($data{'sex'} eq 'F'){
252     $template->param(female => 1);
253   }
254   my ($categories,$labels)=ethnicitycategories();
255     
256   my $ethnicitycategoriescount=$#{$categories};
257   my $ethcatpopup;
258   if ($ethnicitycategoriescount>=0) {
259     $ethcatpopup = CGI::popup_menu(-name=>'ethnicity',
260           -id => 'ethnicity',
261           -tabindex=>'',
262           -values=>$categories,
263           -default=>$data{'ethnicity'},
264           -labels=>$labels);
265     $template->param(ethcatpopup => $ethcatpopup); # bad style, has to be fixed
266   }
267   
268   
269   my $action="WHERE category_type=?";
270   ($categories,$labels)=GetborCatFromCatType($category_type,$action);
271   
272   if(scalar(@$categories)){
273       #if you modify the borrowers you must have the right value for his category code
274   (my $default_category=$data{'categorycode'}) if ($op  eq 'modify');
275       my $catcodepopup = CGI::popup_menu(
276           -name=>'categorycode',
277       -id => 'categorycode',
278       -values=>$categories,
279         -labels=>$labels,
280       -default=>$default_category
281       );
282       $template->param(catcodepopup=>$catcodepopup);
283   }
284   #test in city
285   $select_city=getidcity($data{'city'}) if ($guarantorid ne '0');
286   ($default_city=$select_city) if ($step eq 0);
287   if ($select_city eq '' ){
288   my $selectcity=&getidcity($data{'city'});
289   $default_city=$selectcity;
290   }
291   my($cityid,$name_city)=GetCities();
292   $template->param( city_cgipopup => 1) if ($cityid );
293   my $citypopup = CGI::popup_menu(-name=>'select_city',
294           -id => 'select_city',
295           -values=>$cityid,
296           -labels=>$name_city,
297 #             -override => 1,
298           -default=>$default_city
299           );  
300   
301   my $default_roadtype;
302   $default_roadtype=$data{'streettype'} ;
303   my($roadtypeid,$road_type)=GetRoadTypes();
304     $template->param( road_cgipopup => 1) if ($roadtypeid );
305   my $roadpopup = CGI::popup_menu(-name=>'streettype',
306           -id => 'streettype',
307           -values=>$roadtypeid,
308             -labels=>$road_type,
309             -override => 1,
310           -default=>$default_roadtype
311           );  
312
313   my $default_borrowertitle;
314   $default_borrowertitle=$data{'title'} ;
315   my($borrowertitle)=GetTitles();
316   my $borrotitlepopup = CGI::popup_menu(-name=>'title',
317                 -id => 'btitle',
318                 -values=>$borrowertitle,
319                 -override => 1,
320                 -default=>$default_borrowertitle
321           );    
322
323
324   my @relationships = split /,|\|/,C4::Context->preference('BorrowerRelationship');
325   my @relshipdata;
326   while (@relationships) {
327     my $relship = shift @relationships || '';
328     my %row = ('relationship' => $relship);
329     if ($data{'relationship'} eq $relship) {
330       $row{'selected'}=' selected';
331     } else {
332       $row{'selected'}='';
333     }
334     push(@relshipdata, \%row);
335   }
336   my %flags = ( 'gonenoaddress' => ['gonenoaddress', 'Gone no address '],
337           'lost'          => ['lost', 'Lost'],
338           'debarred'      => ['debarred', 'Debarred']);
339
340   my @flagdata;
341   foreach (keys(%flags)) {
342   my $key = $_;
343   my %row =  ('key'   => $key,
344       'name'  => $flags{$key}[0],
345       'html'  => $flags{$key}[1]);
346   if ($data{$key}) {
347     $row{'yes'}=' checked';
348     $row{'no'}='';
349   } else {
350     $row{'yes'}='';
351     $row{'no'}=' checked';
352   }
353   push(@flagdata, \%row);
354   }
355
356   if ($modify){
357   $template->param( modify => 1 );
358   }
359
360   #Convert dateofbirth to correct format
361   my @branches;
362   my @select_branch;
363   my %select_branches;
364   my $branches=GetBranches();
365   my $default;
366   # -----------------------------------------------------
367   #  the value of ip from the branches hash table
368 #     my $select_ip;
369   # $ip is the ip of user when is connect to koha 
370 #     my $ip = $ENV{'REMOTE_ADDR'};
371   
372   # -----------------------------------------------------
373   foreach my $branch (keys %$branches) {
374     if ((not C4::Context->preference("IndependantBranches")) || (C4::Context->userenv->{'flags'} == 1)) {
375       push @select_branch, $branch;
376       $select_branches{$branch} = $branches->{$branch}->{'branchname'};
377       $default=C4::Context->userenv->{'branch'};
378     } else {
379       push @select_branch,$branch if ($branch eq C4::Context->userenv->{'branch'});
380       $select_branches{$branch} = $branches->{$branch}->{'branchname'} if ($branch eq C4::Context->userenv->{'branch'});
381       $default = C4::Context->userenv->{'branch'};
382     }
383   }
384 # --------------------------------------------------------------------------------------------------------
385   #in modify mod :default value from $CGIbranch comes from borrowers table
386   #in add mod: default value come from branches table (ip correspendence)
387   $default=$data{'branchcode'}  if ($op eq 'modify');
388   my $CGIbranch = CGI::scrolling_list(-id    => 'branchcode',
389              -name   => 'branchcode',
390              -values => \@select_branch,
391              -labels => \%select_branches,
392              -size   => 1,
393              -override => 1,  
394                    -multiple =>0,
395              -default => $default,
396           );
397   my $CGIorganisations;
398   my $member_of_institution;
399   if (C4::Context->preference("memberofinstitution")){
400      my $organisations=get_institutions();
401      my @orgs;
402      my %org_labels;
403      foreach my $organisation (keys %$organisations) {
404          push @orgs,$organisation;
405          $org_labels{$organisation}=$organisations->{$organisation}->{'surname'};
406      }
407      $member_of_institution=1;
408      
409      $CGIorganisations = CGI::scrolling_list( -id => 'organisations',
410          -name     => 'organisations',
411          -labels   => \%org_labels,
412          -values   => \@orgs,
413          -size     => 5,
414          -multiple => 'true'
415
416          
417      );
418   }
419
420
421 # --------------------------------------------------------------------------------------------------------
422
423   my $CGIsort1 = buildCGIsort("Bsort1","sort1",$data{'sort1'});
424   if ($CGIsort1) {
425     $template->param(CGIsort1 => $CGIsort1);
426     $template->param( sort1 => $data{'sort1'});
427   } else {
428     $template->param( sort1 => $data{'sort1'});
429   }
430   
431   my $CGIsort2 = buildCGIsort("Bsort2","sort2",$data{'sort2'});
432   if ($CGIsort2) {
433     $template->param(CGIsort2 =>$CGIsort2);
434   } else {
435     $template->param( sort2 => $data{'sort2'});
436   }
437   # increase step to see next page
438   if ($nok) {
439       foreach my $error (@errors) {
440           $template->param( $error => 1);
441       }
442         $template->param(nok => 1);
443   }
444 #   else {
445 #       $step++ if $op eq 'add';
446 #   }
447   #Formatting data for display    
448   
449   if ($data{'dateenrolled'} eq ''){
450     my $today= sprintf('%04d-%02d-%02d', Today());
451     #insert ,in field "dateenrolled" , the current date
452     $data{'dateenrolled'}=$today;
453     $data{'dateexpiry'} = GetExpiryDate($data{'categorycode'},$today);
454   }
455   
456   $data{'surname'}=uc($data{'surname'});
457   $data{'firstname'}=ucfirst(lc $data{'firstname'});
458   $data{'dateenrolled'}=format_date($data{'dateenrolled'});
459   $data{'dateexpiry'}=format_date($data{'dateexpiry'});
460   $data{'contactname'}=uc($data{'contactname'});
461   $data{'contactfirstname'}= ucfirst( lc $data{'contactfirstname'});
462   $data{'dateofbirth'} = format_date($data{'dateofbirth'});
463
464 #   warn "$step";
465   $template->param(%data);
466   $template->param(
467     BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
468     category_type => $category_type,#to know the category type of the borrower
469         DHTMLcalendar_dateformat => get_date_format_string_for_DHTMLcalendar(),
470     select_city => $select_city,
471     "step_$step"  => 1,# associate with step to know where u are
472     "$category_type"  => 1,# associate with step to know where u are
473     step    => $step,
474     destination   => $destination,#to know wher u come from and wher u must go in redirect
475     check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
476     flags   =>$data{'flags'},   
477     "op$op"   => 1,
478     nodouble  => $nodouble,
479     borrowernumber  => $borrowernumber,#register number
480     "contacttitle_".$data{'contacttitle'} => "SELECTED" ,
481     guarantorid => $guarantorid,
482     ethcatpopup => $ethcatpopup,
483     relshiploop => \@relshipdata,
484     citypopup => $citypopup,
485     roadpopup => $roadpopup,  
486     borrotitlepopup => $borrotitlepopup,
487     guarantorinfo   => $guarantorinfo,
488     flagloop  => \@flagdata,
489     dateformat      => display_date_format(),
490     check_categorytype =>$check_categorytype,#to recover the category type with checkcategorytype function
491     modify          => $modify,
492     nok     => $nok,#flag to konw if an error 
493     CGIbranch => $CGIbranch,
494           memberofinstution => $member_of_institution,
495           CGIorganisations => $CGIorganisations,
496     
497     );
498   
499   output_html_with_http_headers $input, $cookie, $template->output;
500 # }
501
502 # Local Variables:
503 # tab-width: 8
504 # End: