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
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
30 use C4
::Interface
::CGI
::Output
;
36 my ($template, $loggedinuser, $cookie)
37 = get_template_and_user
({template_name
=> "members/imemberentry.tmpl",
41 flagsrequired
=> {borrowers
=> 1},
46 my $member=$input->param('bornum');
48 $member=NewBorrowerNumber
();
50 my $type=$input->param('type');
52 my $data=borrdata
('',$member);
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,
69 $template->param(member
=> $member,
70 CGIbranch
=> $CGIbranch);
72 output_html_with_http_headers
$input, $cookie, $template->output;