fix for 191, code reindenting & some query improvment
[koha.git] / imemberentry.pl
blob2d6a93a418da0e694f370d6782e3041b2ed42a50
1 #!/usr/bin/perl
2 # NOTE: standard 8-space tabs here
4 #script to set up screen for modification of borrower details
5 #written 20/12/99 by chris@katipo.co.nz
8 # Copyright 2000-2002 Katipo Communications
10 # This file is part of Koha.
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.
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.
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
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;
34 my $input = new CGI;
36 my ($template, $loggedinuser, $cookie)
37 = get_template_and_user({template_name => "members/imemberentry.tmpl",
38 query => $input,
39 type => "intranet",
40 authnotrequired => 0,
41 flagsrequired => {borrowers => 1},
42 debug => 1,
43 });
46 my $member=$input->param('bornum');
47 if ($member eq ''){
48 $member=NewBorrowerNumber();
50 my $type=$input->param('type');
52 my $data=borrdata('',$member);
54 my @branches;
55 my @select_branch;
56 my %select_branches;
57 my $branches=getbranches();
58 foreach my $branch (keys %$branches) {
59 push @select_branch, $branch;
60 $select_branches{$branch} = $branches->{$branch}->{'branchname'};
62 my $CGIbranch=CGI::scrolling_list( -name => 'branch',
63 -values => \@select_branch,
64 -default => $data->{'branchcode'},
65 -labels => \%select_branches,
66 -size => 1,
67 -multiple => 0 );
69 $template->param(member => $member,
70 CGIbranch => $CGIbranch);
72 output_html_with_http_headers $input, $cookie, $template->output;
74 # Local Variables:
75 # tab-width: 8
76 # End: