fixing a bug preventing compilation
[koha.git] / members / memberentry.pl
1 #!/usr/bin/perl
2 # NOTE: This file uses standard 8-space tabs
3 #       DO NOT SET TAB SIZE TO 4
4
5 # $Id$
6
7 #script to set up screen for modification of borrower details
8 #written 20/12/99 by chris@katipo.co.nz
9
10
11 # Copyright 2000-2002 Katipo Communications
12 #
13 # This file is part of Koha.
14 #
15 # Koha is free software; you can redistribute it and/or modify it under the
16 # terms of the GNU General Public License as published by the Free Software
17 # Foundation; either version 2 of the License, or (at your option) any later
18 # version.
19 #
20 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
21 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
22 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License along with
25 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
26 # Suite 330, Boston, MA  02111-1307 USA
27
28 use strict;
29 use C4::Auth;
30 use C4::Context;
31 use C4::Output;
32 use C4::Interface::CGI::Output;
33 use CGI;
34 use C4::Search;
35 use C4::Members;
36 use C4::Koha;
37 use HTML::Template;
38 use Date::Manip;
39 use C4::Date;
40 use C4::Input;
41
42 my $input = new CGI;
43
44 my $dbh = C4::Context->dbh;
45
46 my ($template, $loggedinuser, $cookie)
47     = get_template_and_user({template_name => "members/memberentry.tmpl",
48                              query => $input,
49                              type => "intranet",
50                              authnotrequired => 0,
51                              flagsrequired => {borrowers => 1},
52                              debug => 1,
53                              });
54
55 my $borrowernumber=$input->param('borrowernumber');
56 my $actionType=$input->param('actionType') || '';
57 my $modify=$input->param('modify');
58 my $delete=$input->param('delete');
59 my $op=$input->param('op');
60 my $categorycode=$input->param('categorycode');
61 my $destination=$input->param('destination');
62
63 my $nok;
64 # if a add or modify is requested => check validity of data.
65 if ($op eq 'add' or $op eq 'modify') {
66         my %data;
67         my @names=$input->param;
68         foreach my $key (@names){
69                 $data{$key}=$input->param($key);
70                 $data{$key}=~ s/\'/\\\'/g;
71                 $data{$key}=~ s/\"/\\\"/g;
72         }
73         my @errors;
74         if ($data{'cardnumber'} eq ''){
75                 push @errors,"ERROR_cardnumber";
76                 $nok=1;
77         } else {
78                 #check cardnumber is valid
79                 my $nounique;
80                 if ( $op eq "add" )    {
81                         $nounique = 0;
82                 } else {
83                         $nounique = 1;
84                 }
85                 my $valid=checkdigit('',$data{'cardnumber'}, $nounique);
86                 if ($valid != 1){
87                         $nok=1;
88                         push @errors, "ERROR_invalid_cardnumber";
89                 }
90         }
91
92         if ($data{'sex'} eq '' && $categorycode ne "I"){
93                 push @errors, "ERROR_gender";
94                 $nok=1;
95         }
96         if ($data{'firstname'} eq '' && $categorycode ne "I"){
97                 push @errors,"ERROR_firstname";
98                 $nok=1;
99         }
100         if ($data{'surname'} eq ''){
101                 push @errors,"ERROR_surname";
102                 $nok=1;
103         }
104         if ($data{'streetaddress'} eq ''){
105                 push @errors, "ERROR_address";
106                 $nok=1;
107         }
108         if ($data{'city'} eq ''){
109                 push @errors, "ERROR_city";
110                 $nok=1;
111         }
112         if (C4::Context->preference("IndependantBranches")) {
113                 my $userenv = C4::Context->userenv;
114                 if ($userenv->{flags} == 1){
115                         unless ($userenv->{branch} eq $data{'branchcode'}){
116                                 push @errors, "ERROR_branch";
117                                 $nok=1;
118                         }
119                 }
120         }
121         if ($nok) {
122                 foreach my $error (@errors) {
123                         $template->param( $error => 1);
124                 }
125                 $template->param(nok => 1);
126         } else {
127                 my $query="Select * from borrowers where borrowernumber=?";
128                 my $sth=$dbh->prepare($query);
129                 $sth->execute($data{'borrowernumber'});
130                 if (my $data2=$sth->fetchrow_hashref){
131                         &modmember(%data);
132                 }else{
133                         $borrowernumber = &newmember(%data);
134                 }
135                 
136         if($destination eq "circ"){
137                 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$data{'cardnumber'}");
138         } else {
139                 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowernumber");
140                 }
141         }
142 }
143 if ($delete){
144         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
145 } else {  # this else goes down the whole script
146         if ($actionType eq 'Add'){
147                 $template->param( addAction => 1);
148         } else {
149                 $template->param( addAction =>0);
150         }
151         # retrieve previous values : either in DB or in CGI, in case of errors in values
152         my $data;
153         if ($nok) {
154                 my @names=$input->param;
155                 foreach my $key (@names){
156                         $data->{$key}=$input->param($key);
157                 }
158         } else {
159                 $data=borrdata('',$borrowernumber);
160         }
161         if ($actionType eq 'Add'){
162                 $template->param( updtype => 'I');
163         } else {
164                 $template->param( updtype => 'M');
165         }
166         my $cardnumber=C4::Members::fixup_cardnumber($data->{'cardnumber'});
167         if ($data->{'sex'} eq 'F'){
168                 $template->param(female => 1);
169         }
170         my ($categories,$labels)=ethnicitycategories();
171         my $ethnicitycategoriescount=$#{$categories};
172         my $ethcatpopup;
173         if ($ethnicitycategoriescount>=0) {
174                 $ethcatpopup = CGI::popup_menu(-name=>'ethnicity',
175                                         -id => 'ethnicity',
176                                         -values=>$categories,
177                                         -default=>$data->{'ethnicity'},
178                                         -labels=>$labels);
179                 $template->param(ethcatpopup => $ethcatpopup); # bad style, has to be fixed
180         }
181
182         ($categories,$labels)=borrowercategories();
183         my $catcodepopup = CGI::popup_menu(-name=>'categorycode',
184                                         -id => 'categorycode',
185                                         -values=>$categories,
186                                         -default=>$data->{'categorycode'},
187                                         -labels=>$labels);
188
189         my @relationships = ('','workplace', 'relative','friend', 'neighbour');
190         my @relshipdata;
191         while (@relationships) {
192                 my $relship = shift @relationships;
193                 my %row = ('relationship' => $relship);
194                 if ($data->{'altrelationship'} eq $relship) {
195                         $row{'selected'}=' selected';
196                 } else {
197                         $row{'selected'}='';
198                 }
199                 push(@relshipdata, \%row);
200         }
201
202         # %flags: keys=$data-keys, datas=[formname, HTML-explanation]
203         my %flags = ('gonenoaddress' => ['gna', 'Gone no address'],
204                                 'lost'          => ['lost', 'Lost'],
205                                 'debarred'      => ['debarred', 'Debarred']);
206
207         my @flagdata;
208         foreach (keys(%flags)) {
209         my $key = $_;
210         my %row =  ('key'   => $key,
211                         'name'  => $flags{$key}[0],
212                         'html'  => $flags{$key}[1]);
213         if ($data->{$key}) {
214                 $row{'yes'}=' checked';
215                 $row{'no'}='';
216         } else {
217                 $row{'yes'}='';
218                 $row{'no'}=' checked';
219         }
220         push(@flagdata, \%row);
221         }
222
223         if ($modify){
224         $template->param( modify => 1 );
225         }
226
227         #Convert dateofbirth to correct format
228         $data->{'dateofbirth'} = format_date($data->{'dateofbirth'});
229
230         my @branches;
231         my @select_branch;
232         my %select_branches;
233         my $branches=getbranches();
234         my $default;
235         foreach my $branch (keys %$branches) {
236                 if (C4::Context->preference("IndependantBranches")) {
237                         my $userenv = C4::Context->userenv;
238                         if ($userenv->{flags} == 1){
239                                 push @select_branch, $branch;
240                                 $select_branches{$branch} = $branches->{$branch}->{'branchname'};
241                                 $default = $data->{'branchcode'};
242                         } else {
243                                 push @select_branch, $branch if ($branch eq $userenv->{branch});
244                                 $select_branches{$branch} = $branches->{$branch}->{'branchname'} if ($branch eq $userenv->{branch});
245                                 $default = $userenv->{branch};
246                         }
247                 } else {
248                         push @select_branch, $branch;
249                         $select_branches{$branch} = $branches->{$branch}->{'branchname'};
250                         $default = $data->{'branchcode'};
251                 }
252         }
253         
254         my $CGIbranch=CGI::scrolling_list( -name     => 'branchcode',
255                                 -id => 'branchcode',
256                                 -values   => \@select_branch,
257                                 -default  => $data->{'branchcode'},
258                                 -labels   => \%select_branches,
259                                 -size     => 1,
260                                 -multiple => 0 );
261         
262         my $CGIsort1 = buildCGIsort("Bsort1","sort1",$data->{'sort1'});
263         if ($CGIsort1) {
264                 $template->param(CGIsort1 => $CGIsort1);
265         } else {
266                 $template->param( sort1 => $data->{'sort1'});
267         }
268         
269         my $CGIsort2 = buildCGIsort("Bsort2","sort2",$data->{'sort2'});
270         if ($CGIsort2) {
271                 $template->param(CGIsort2 =>$CGIsort2);
272         } else {
273                 $template->param( sort2 => $data->{'sort2'});
274         }
275
276         my $CGIsort1 = buildCGIsort("Bsort1","sort1",$data->{'sort1'});
277         if ($CGIsort1) {
278                 $template->param(CGIsort1 => $CGIsort1);
279         } else {
280                 $template->param( sort1 => $data->{'sort1'});
281         }
282
283         my $CGIsort2 = buildCGIsort("Bsort2","sort2",$data->{'sort2'});
284         if ($CGIsort2) {
285                 $template->param(CGIsort2 =>$CGIsort2);
286         } else {
287                 $template->param( sort2 => $data->{'sort2'});
288         }
289         
290         $template->param(       actionType              => $actionType,
291                                 destination => $destination,
292                                 borrowernumber          => $borrowernumber,
293                                 address         => $data->{'streetaddress'},
294                                 firstname       => $data->{'firstname'},
295                                 surname         => $data->{'surname'},
296                                 othernames      => $data->{'othernames'},
297                                 initials        => $data->{'initials'},
298                                 ethcatpopup     => $ethcatpopup,
299                                 catcodepopup    => $catcodepopup,
300                                 streetaddress   => $data->{'streetaddress'},
301                                 physstreet   => $data->{'physstreet'},
302                                 zipcode => $data->{'zipcode'},
303                                 streetcity      => $data->{'streetcity'},
304                                 homezipcode => $data->{'homezipcode'},
305                                 city            => $data->{'city'},
306                                 phone           => $data->{'phone'},
307                                 phoneday        => $data->{'phoneday'},
308                                 faxnumber       => $data->{'faxnumber'},
309                                 emailaddress    => $data->{'emailaddress'},
310                                 textmessaging   => $data->{'textmessaging'},
311                                 contactname     => $data->{'contactname'},
312                                 altphone        => $data->{'altphone'},
313                                 altnotes        => $data->{'altnotes'},
314                                 borrowernotes   => $data->{'borrowernotes'},
315                                 flagloop        => \@flagdata,
316                                 relshiploop     => \@relshipdata,
317                                 "title_".$data->{'title'} => " SELECTED ",
318                                 joining => format_date($data->{'dateenrolled'}),
319                                 expiry          => format_date($data->{'expiry'}),
320                                 cardnumber      => $cardnumber,
321                                 dateofbirth     => $data->{'dateofbirth'},
322                                 dateformat      => display_date_format(),
323                                 modify          => $modify,
324                                 CGIbranch => $CGIbranch);
325         $template->param(Institution => 1) if ($categorycode eq "I");
326         output_html_with_http_headers $input, $cookie, $template->output;
327
328
329 }
330
331 # Local Variables:
332 # tab-width: 8
333 # End: