Fix for adding organisations to a borrower
[koha.git] / 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 HTML::Template;
28 use Date::Manip;
29 use Digest::MD5 qw(md5_base64);
30
31 # internal modules
32 use C4::Auth;
33 use C4::Context;
34 use C4::Output;
35 use C4::Interface::CGI::Output;
36 use C4::Search;
37 use C4::Members;
38 use C4::Koha;
39 use C4::Date;
40 use C4::Input;
41 use C4::Log;
42
43 my $input = new CGI;
44 my %data;
45
46
47 my $dbh = C4::Context->dbh;
48
49 my $category_type = $input->param('category_type') || die "NO CATEGORY_TYPE !"; # A, E, C, or P
50 my $step=$input->param('step') || 0;
51 my ($template, $loggedinuser, $cookie)
52     = get_template_and_user({template_name => "members/memberentry$category_type.tmpl",
53                              query => $input,
54                              type => "intranet",
55                              authnotrequired => 0,
56                              flagsrequired => {borrowers => 1},
57                              debug => 1,
58                              });
59
60 my $borrowerid=$input->param('borrowerid');
61 my $guarantorid=$input->param('guarantorid');
62 my $borrowernumber=$input->param('borrowernumber');
63 my $actionType=$input->param('actionType') || '';
64 my $modify=$input->param('modify');
65 my $delete=$input->param('delete');
66 my $op=$input->param('op');
67 my $categorycode=$input->param('categorycode');
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 my $select_city=$input->param('select_city');
74 my $nok=$input->param('nok');
75
76 my @errors;
77
78 # $check_categorytype contains the value of duplicate borrowers category type to redirect in good template in step =2
79 my $check_categorytype=$input->param('check_categorytype');
80 # NOTE: Alert for ethnicity and ethnotes fields, they are unvalided in all borrowers form
81
82
83 #function  to automatic setup the mandatory  fields (visual with css)
84 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
85 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
86 foreach (@field_check) {
87 $template->param( "mandatory$_" => 1);          
88 }       
89
90 $template->param( "checked" => 1) if ($nodouble eq 1);
91
92
93 # if a add or modify is requested => check validity of data.
94 if ($op eq 'add' or $op eq 'modify') {
95         my @names=$input->param;
96         foreach my $key (@names){
97                 $data{$key}=$input->param($key)||'';
98                 $data{$key}=~ s/\'/\\\'/g;
99                 $data{$key}=~ s/\"/\\\"/g;
100         }
101
102         #############test for member being unique #############
103         if ($op eq 'add' && $step eq 2){
104                 (my $category_type_send=$category_type ) if ($category_type eq 'I'); 
105                 my $check_category; # recover the category code of the doublon suspect borrowers
106            ($check_member,$check_category)= checkuniquemember($category_type_send,$data{'surname'},$data{'firstname'},format_date_in_iso($data{'dateofbirth'}));
107 #       recover the category type if the borrowers is a duplicate
108         ($check_categorytype,undef)=getcategorytype($check_category);
109         }
110
111 # CHECKS step by step
112 # STEP 1
113         if ($step eq 1) {
114                 ###############test to take the right zipcode and city name ##############
115                 if ($category_type ne 'I' and $guarantorid){
116                         my ($borrower_city,$borrower_zipcode)=&getzipnamecity($select_city);
117                         $data{'city'}= $borrower_city;
118                         $data{'zipcode'}=$borrower_zipcode;
119                 }
120                 if ($category_type eq 'C' and $guarantorid){
121                         my $guarantordata=getguarantordata($guarantorid);
122                         if (($data{'contactname'} eq '' or $data{'contactname'} ne $guarantordata->{'surname'})) {
123                                 $data{'contactfirstname'}=$guarantordata->{'firstname'};        
124                                 $data{'contactname'}=$guarantordata->{'surname'};
125                                 $data{'contacttitle'}=$guarantordata->{'title'};
126                                 $data{'streetnumber'}=$guarantordata->{'streetnumber'};
127                                 $data{'address'}=$guarantordata->{'address'};
128                                 $data{'streettype'}=$guarantordata->{'streettype'};
129                                 $data{'address2'}=$guarantordata->{'address2'};
130                                 $data{'zipcode'}=$guarantordata->{'zipcode'};
131                                 $data{'city'}=$guarantordata->{'city'};
132                                 $data{'phone'}=$guarantordata->{'phone'};
133                                 $data{'phonepro'}=$guarantordata->{'phonepro'};
134                                 $data{'mobile'}=$guarantordata->{'mobile'};
135                                 $data{'fax'}=$guarantordata->{'fax'};
136                                 $data{'email'}=$guarantordata->{'email'};
137                                 $data{'emailpro'}=$guarantordata->{'emailpro'};
138                         }
139                     }
140                 if ($categorycode ne 'I') {
141                     # is the age of the borrower compatible with age limitations of
142                     # the borrower category
143                     my $query = '
144 SELECT upperagelimit,
145        dateofbirthrequired
146   FROM categories
147   WHERE categorycode = ?
148 ';
149                     my $sth=$dbh->prepare($query);
150                     $sth->execute($categorycode);
151                     my $category_info = $sth->fetchrow_hashref;
152
153                     my $age = get_age(format_date_in_iso($data{dateofbirth}));
154
155                     if ($age > $category_info->{upperagelimit}
156                             or $age < $category_info->{dateofbirthrequired}
157                         ) {
158                         push @errors, 'ERROR_age_limitations';
159                         $nok = 1;
160                     }
161                 }
162         }
163 # STEP 2
164         if ($step eq 2) {
165                         if ( ($data{'login'} eq '')){
166                                 my $onefirstnameletter=substr($data{'firstname'},0,1);
167                                 my $fivesurnameletter=substr($data{'surname'},0,5);
168                                 $data{'login'}=lc($onefirstnameletter.$fivesurnameletter);
169                         }
170                         if ($op eq 'add' and $data{'dateenrolled'} eq ''){
171                                 my $today=today();
172                                 #insert ,in field "dateenrolled" , the current date
173                                 $data{'dateenrolled'}=$today;
174                                 #if date expiry is null u must calculate the value only in this case
175                                 $data{'dateexpiry'} = calcexpirydate($data{'categorycode'},$today);
176                         }
177                         if ($op eq 'modify' ){
178                         my $today=today();
179 #                       if date expiry is null u must calculate the value only in this case
180                         if ($data{'dateexpiry'} eq ''){
181                         $data{'dateexpiry'} = calcexpirydate($data{'categorycode'},$today);
182                         }
183                 }
184         }
185 # STEP 3
186         if ($step eq 3) {
187                 # this value show if the login and password are been used
188                 my $loginexist=checkuserpassword($borrowerid,$data{'login'},$data{'password'});
189                 # test to know if u must save or create the borrowers
190                 if ($op eq 'modify'){
191                         # test to know if another user have the same password and same login            
192                         if ($loginexist eq 0) {
193                                 &modmember(%data);              
194                                 logaction($loggedinuser,"MEMBERS","modify member", $borrowerid, "");
195                         }
196                         else {
197                                 push @errors, "ERROR_login_exist";
198                                 $nok=1;
199                         }
200                 }else{
201                         # test to know if another user have the same password and same login     
202                         if ($loginexist) {
203                                 push @errors, "ERROR_login_exist";
204                                 $nok=1;
205                         } else {
206                                 $borrowerid = &newmember(%data);
207                                 if ($data{'organisations'}){                                
208                                     # need to add the members organisations
209                                     my @orgs=split(/\|/,$data{'organisations'});
210                                     add_member_orgs($borrowerid,\@orgs);
211                                  }
212                                 logaction($loggedinuser,"MEMBERS","add member", $borrowerid, "");
213                         }
214                 }
215
216                 unless ($nok) {
217                         if($destination eq "circ"){
218                                 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$data{'cardnumber'}");
219                         } else {
220                                 if ($loginexist == 0) {
221                                 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowerid");
222                                 }
223                         }
224                 }
225         }
226         if (C4::Context->preference("IndependantBranches")) {
227                 my $userenv = C4::Context->userenv;
228                 if ($userenv->{flags} != 1){
229                         unless ($userenv->{branch} eq $data{'branchcode'}){
230                                 push @errors, "ERROR_branch";
231                                 $nok=1;
232                         }
233                 }
234         }
235 }
236
237 if ($delete){
238         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowerid");
239         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
240 } else {  # this else goes down the whole script
241         # retrieve previous values : either in DB or in CGI, in case of errors in values
242         my $data;
243 # test to now if u add or modify a borrower (modify =>to take all carateristic of the borrowers)
244         if (!$op and !$data{'surname'}) {
245                 $data=borrdata('',$borrowerid);
246                 %data=%$data;
247         }
248         if (C4::Context->preference("IndependantBranches")) {
249                 my $userenv = C4::Context->userenv;
250                 if ($userenv->{flags} != 1 && $data{branchcode}){
251                         unless ($userenv->{branch} eq $data{'branchcode'}){
252                                 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
253                         }
254                 }
255         }
256         if ($op eq 'add'){
257                 $template->param( updtype => 'I');
258         } else {
259                 $template->param( updtype => 'M');
260         }
261         my $cardnumber=$data{'cardnumber'};
262         $cardnumber=fixup_cardnumber($data{'cardnumber'}) if $op eq 'add';
263         if ($data{'sex'} eq 'F'){
264                 $template->param(female => 1);
265         }
266         my ($categories,$labels)=ethnicitycategories();
267         my $ethnicitycategoriescount=$#{$categories};
268         my $ethcatpopup;
269         if ($ethnicitycategoriescount>=0) {
270                 $ethcatpopup = CGI::popup_menu(-name=>'ethnicity',
271                                         -id => 'ethnicity',
272                                         -values=>$categories,
273                                         -default=>$data{'ethnicity'},
274                                         -labels=>$labels);
275                 $template->param(ethcatpopup => $ethcatpopup); # bad style, has to be fixed
276         }
277         
278         
279         ($categories,$labels)=borrowercategories($category_type,$op);
280         
281         #if u modify the borrowers u must have the right value for is category code
282         
283         (my $default_category=$data{'categorycode'}) if ($op  eq '');
284         my $catcodepopup = CGI::popup_menu(-name=>'categorycode',
285                                         -id => 'categorycode',
286                                         -values=>$categories,
287                                         -default=>$default_category,
288                                         -labels=>$labels);
289         #test in city
290         my $default_city;
291         if ($op eq ''){
292         (my $selectcity=&getidcity($data{'city'})) if ($select_city eq '');
293         $default_city=$selectcity;
294         }
295         my($cityid,$name_city)=getcities();
296         $template->param( city_cgipopup => 1) if ($cityid );
297         my $citypopup = CGI::popup_menu(-name=>'select_city',
298                                         -id => 'select_city',
299                                         -values=>$cityid,
300                                         -labels=>$name_city,
301 #                                       -override => 1,
302                                         -default=>$default_city
303                                         );      
304         
305         my $default_roadtype;
306         $default_roadtype=$data{'streettype'} ;
307         my($roadtypeid,$road_type)=getroadtypes();
308         $template->param( road_cgipopup => 1) if ($roadtypeid );
309         my $roadpopup = CGI::popup_menu(-name=>'streettype',
310                                         -id => 'streettype',
311                                         -values=>$roadtypeid,
312                                         -labels=>$road_type,
313                                         -override => 1,
314                                         -default=>$default_roadtype
315                                         );      
316
317         
318         my @relationships = split /,|\|/,C4::Context->preference('BorrowerRelationship');
319         my @relshipdata;
320         while (@relationships) {
321                 my $relship = shift @relationships || '';
322                 my %row = ('relationship' => $relship);
323                 if ($data{'relationship'} eq $relship) {
324                         $row{'selected'}=' selected';
325                 } else {
326                         $row{'selected'}='';
327                 }
328                 push(@relshipdata, \%row);
329         }
330         my %flags = ( 'gonenoaddress' => ['gonenoaddress', 'Adresse Ã©rronée'],
331                       'lost'          => ['lost', 'Carte Perdue'],
332                       'debarred'      => ['debarred', 'Lecteur exclu']);
333
334         my @flagdata;
335         foreach (keys(%flags)) {
336         my $key = $_;
337         my %row =  ('key'   => $key,
338                         'name'  => $flags{$key}[0],
339                         'html'  => $flags{$key}[1]);
340         if ($data{$key}) {
341                 $row{'yes'}=' checked';
342                 $row{'no'}='';
343         } else {
344                 $row{'yes'}='';
345                 $row{'no'}=' checked';
346         }
347         push(@flagdata, \%row);
348         }
349
350         if ($modify){
351         $template->param( modify => 1 );
352         }
353
354         #Convert dateofbirth to correct format
355         $data{'dateofbirth'} = format_date($data{'dateofbirth'});
356         my @branches;
357         my @select_branch;
358         my %select_branches;
359         my $branches=getbranches();
360         my $default;
361         # -----------------------------------------------------
362         #  the value of ip from the branches hash table
363                 my $select_ip;
364         # $ip is the ip of user when is connect to koha 
365                 my $ip = $ENV{'REMOTE_ADDR'};
366         # -----------------------------------------------------
367         foreach my $branch (keys %$branches) {
368                 if ((not C4::Context->preference("IndependantBranches")) || (C4::Context->userenv->{'flags'} == 1)) {
369                         push @select_branch, $branch;
370                         $select_branches{$branch} = $branches->{$branch}->{'branchname'};
371 #                take the ip number from branches "op"
372                         $select_ip = $branches->{$branch}->{'branchip'} || '';
373                                 
374 #               test $select_ip equal $ip to attribute the default value for the scrolling list
375                         if ($select_ip eq $ip)  {
376                                                 $default = $branches->{$branch}->{'branchcode'};
377                                                 }
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                                         
382                                 $default = C4::Context->userenv->{'branch'};
383                                         
384                                 }
385         }
386 # --------------------------------------------------------------------------------------------------------
387         my $CGIbranch = CGI::scrolling_list(-id    => 'branchcode',
388                                            -name   => 'branchcode',
389                                            -values => \@select_branch,
390                                            -labels => \%select_branches,
391                                            -size   => 1,
392                                            -multiple =>0,
393                                            -override => 1,      
394                                            -default => $default,
395                                         );
396        my $CGIorganisations;
397        my $member_of_institution;
398        if (C4::Context->preference("memberofinstitution")){
399            my $organisations=get_institutions();
400            my @orgs;
401            my %org_labels;
402            foreach my $organisation (keys %$organisations) {
403                push @orgs,$organisation;
404                $org_labels{$organisation}=$organisations->{$organisation}->{'surname'};
405            }
406            $member_of_institution=1;
407            
408            $CGIorganisations = CGI::scrolling_list( -id => 'organisations',
409                -name     => 'organisations',
410                -labels   => \%org_labels,
411                -values   => \@orgs,
412                -size     => 5,
413                -multiple => 'true'
414
415                
416            );
417        }
418
419
420 # --------------------------------------------------------------------------------------------------------
421         
422         my $CGIsort1 = buildCGIsort("Bsort1","sort1",$data{'sort1'});
423         if ($CGIsort1) {
424                 $template->param(CGIsort1 => $CGIsort1);
425                 $template->param( sort1 => $data{'sort1'});
426         } else {
427                 $template->param( sort1 => $data{'sort1'});
428         }
429         
430         my $CGIsort2 = buildCGIsort("Bsort2","sort2",$data{'sort2'});
431         if ($CGIsort2) {
432                 $template->param(CGIsort2 =>$CGIsort2);
433         } else {
434                 $template->param( sort2 => $data{'sort2'});
435         }
436
437         
438         $data{'opacnotes'} =~ s/\\//g;
439         $data{'borrowernotes'} =~ s/\\//g;
440
441         # increase step to see next page
442         if ($nok) {
443             foreach my $error (@errors) {
444                 $template->param( $error => 1);
445             }
446             $template->param(nok => 1);
447         }
448         else {
449             $step++;
450         }
451
452         warn "CITY".$data{city};
453         $template->param(
454                 BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
455                 category_type   => $category_type,#to know the category type of the borrower
456                 select_city     => $select_city,
457                 "step_$step"    => 1,# associate with step to know where u are
458                 step            => $step,
459                 destination     => $destination,#to know wher u come from and wher u must go in redirect
460                 check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
461 #                               flags           =>$data{'flags'},               
462                 "op$op"         => 1,
463 #               op                      => $op,
464                 nodouble        => $nodouble,
465                 borrowerid      => $borrowerid,#register number
466                 cardnumber      => $data{'cardnumber'},
467                 surname         => uc($data{'surname'}),
468                 firstname       => ucfirst($data{'firstname'}),
469                 "title_".$data{'title'}   => " SELECTED ",
470                 title           => $data{'title'},
471                 othernames      => $data{'othernames'},
472                 initials        => $data{'initials'},
473                 streetnumber    => $data{'streetnumber'},
474                 streettype      =>$data{'streettype'},
475                 address          => $data{'address'},
476                 address2        => $data{'address2'},   
477                 city            => $data{'city'},
478                 zipcode         => $data{'zipcode'},
479                 email           => $data{'email'},
480                 phone           => $data{'phone'},
481                 mobile          => $data{'mobile'},
482                 fax             => $data{'fax'},
483                 phonepro        => $data{'phonepro'},
484                 emailpro        => $data{'emailpro'},
485                 b_address       => $data{'b_address'},
486                 b_city          => $data{'b_city'},
487                 b_zipcode       => $data{'b_zipcode'},
488                 b_email         => $data{'b_email'},
489                 b_phone        => $data{'b_phone'},
490                 dateofbirth     => $data{'dateofbirth'},
491                 branchcode      => $data{'branchcode'},
492                 catcodepopup    => $catcodepopup,
493                 categorycode    => $data{'categorycode'},
494                 dateenrolled    => format_date($data{'dateenrolled'}),
495                 dateexpiry              => format_date($data{'dateexpiry'}),
496                 debarred        => $data{'debarred'},
497                 gonenoaddress   => $data{'gonenoaddress'}, 
498                 lost    => $data{'lost'},
499                 contactname     => uc($data{'contactname'}),
500                 contactfirstname=> ucfirst($data{'contactfirstname'}),
501                 "contacttitle_".$data{'contacttitle'} => "SELECTED" ,
502                 contacttitle    => $data{'contacttitle'},
503                 guarantorid     => $guarantorid,
504                 ethcatpopup     => $ethcatpopup,
505                 sex             => $data{'sex'},
506                 login           => $data{'login'},      
507                 password        => $data{'password'},   
508                 opacnotes       => $data{'opacnotes'},  
509                 contactnotes    => $data{'contactnotes'},
510                 borrowernotes   => $data{'borrowernotes'},
511                 relshiploop     => \@relshipdata,
512                 relationship    => $data{'relationship'},
513                 citypopup       => $citypopup,
514                 roadpopup       => $roadpopup,  
515                 contacttype     => $data{'contacttype'},
516                 organisations   => $data{'organisations'},
517                 flagloop        => \@flagdata,
518 #                               "contacttype_".$data{'contacttype'} =>" SELECTED ",
519                 dateformat      => display_date_format(),
520                 check_categorytype =>$check_categorytype,#to recover the category type with checkcategorytype function
521                         modify          => $modify,
522 #                               city_choice       => $city_choice ,#check if the city was selected
523                 nok             => $nok,#flag to konw if an error 
524                 CGIbranch => $CGIbranch,
525                 memberofinstution => $member_of_institution,
526                 CGIorganisations => $CGIorganisations,
527                 );
528         #$template->param(Institution => 1) if ($categorycode eq "I");
529         output_html_with_http_headers $input, $cookie, $template->output;
530 }
531
532 sub get_age {
533     my ($date, $date_ref) = @_;
534
535     if (not defined $date_ref) {
536         $date_ref = sprintf('%04d-%02d-%02d', Today());
537     }
538
539     my ($year1, $month1, $day1) = split /-/, $date;
540     my ($year2, $month2, $day2) = split /-/, $date_ref;
541
542     my $age = $year2 - $year1;
543     if ($month1.$day1 > $month2.$day2) {
544         $age--;
545     }
546
547     return $age;
548 }
549
550 # Local Variables:
551 # tab-width: 8
552 # End: