Fixed barcode / cardnumber error
[koha.git] / imemberentry.pl
1 #!/usr/bin/perl
2 # NOTE: standard 8-space tabs here
3
4 #script to set up screen for modification of borrower details
5 #written 20/12/99 by chris@katipo.co.nz
6
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use strict;
26 use C4::Auth;
27 use C4::Output;
28 use CGI;
29 use C4::Search;
30 use C4::Interface::CGI::Output;
31 use C4::Koha;
32 use HTML::Template;
33 use C4::Members;
34
35 my $input = new CGI;
36
37 my ($template, $loggedinuser, $cookie)
38     = get_template_and_user({template_name => "members/imemberentry.tmpl",
39                              query => $input,
40                              type => "intranet",
41                              authnotrequired => 0,
42                              flagsrequired => {borrowers => 1},
43                              debug => 1,
44                              });
45
46
47 my $member=$input->param('bornum');
48 if ($member eq ''){
49   $member=NewBorrowerNumber();
50 }
51 my $type=$input->param('type');
52
53 my $data=borrdata('',$member);
54
55 my $cardnumber=C4::Members::fixup_cardnumber($data->{'cardnumber'});
56
57 my @branches;
58 my @select_branch;
59 my %select_branches;
60 my $branches=getbranches();
61 foreach my $branch (keys %$branches) {
62         push @select_branch, $branch;
63         $select_branches{$branch} = $branches->{$branch}->{'branchname'};
64 }
65 my $CGIbranch=CGI::scrolling_list( -name     => 'branch',
66                         -values   => \@select_branch,
67                         -default  => $data->{'branchcode'},
68                         -labels   => \%select_branches,
69                         -size     => 1,
70                         -multiple => 0 );
71
72 $template->param(member => $member,
73                                 cardnumber_institution => $cardnumber,  
74                                 CGIbranch => $CGIbranch);
75
76 output_html_with_http_headers $input, $cookie, $template->output;
77
78 # Local Variables:
79 # tab-width: 8
80 # End: