3 #wrriten 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
7 # Copyright 2000-2002 Katipo Communications
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA 02111-1307 USA
35 my $borrowernumber=$input->param('borrowernumber');
38 my $data=GetMember
($borrowernumber,'borrowernumber');
39 my $add=$input->param('add');
42 my $barcode=$input->param('barcode');
43 my $itemnum = GetItemnumberFromBarcode
($barcode) if $barcode;
44 my $desc=$input->param('desc');
45 my $amount=$input->param('amount');
47 my $type=$input->param('type');
48 manualinvoice
($borrowernumber,$itemnum,$desc,$type,$amount);
49 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
51 my ($template, $loggedinuser, $cookie)
52 = get_template_and_user
({template_name
=> "members/mancredit.tmpl",
56 flagsrequired
=> {borrowers
=> 1},
60 if ( $data->{'category_type'} eq 'C') {
61 my ( $catcodes, $labels ) = GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
62 my $cnt = scalar(@
$catcodes);
63 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
64 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
67 $template->param( adultborrower
=> 1 ) if ( $data->{category_type
} eq 'A' );
68 my ($picture, $dberror) = GetPatronImage
($data->{'cardnumber'});
69 $template->param( picture
=> 1 ) if $picture;
72 borrowernumber
=> $borrowernumber,
73 firstname
=> $data->{'firstname'},
74 surname
=> $data->{'surname'},
75 cardnumber
=> $data->{'cardnumber'},
76 categorycode
=> $data->{'categorycode'},
77 category_type
=> $data->{'category_type'},
78 category_description
=> $data->{'description'},
79 address
=> $data->{'address'},
80 address2
=> $data->{'address2'},
81 city
=> $data->{'city'},
82 zipcode
=> $data->{'zipcode'},
83 phone
=> $data->{'phone'},
84 email
=> $data->{'email'},
85 is_child
=> ($data->{'category_type'} eq 'C'),
87 output_html_with_http_headers
$input, $cookie, $template->output;