Additional help files
[koha.git] / members / mancredit.pl
blob847e528227944acc4da5fa23ea205e8266f0f7f8
1 #!/usr/bin/perl
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
14 # version.
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
24 use strict;
25 use C4::Auth;
26 use C4::Output;
27 use CGI;
29 use C4::Members;
30 use C4::Accounts;
31 my $input=new CGI;
33 my $borrowernumber=$input->param('borrowernumber');
35 #get borrower details
36 my $data=GetMember($borrowernumber,'borrowernumber');
37 my $add=$input->param('add');
39 if ($add){
40 my $itemnum=$input->param('itemnum');
41 my $desc=$input->param('desc');
42 my $amount=$input->param('amount');
43 $amount = -$amount;
44 my $type=$input->param('type');
45 manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
46 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
47 } else {
48 my ($template, $loggedinuser, $cookie)
49 = get_template_and_user({template_name => "members/mancredit.tmpl",
50 query => $input,
51 type => "intranet",
52 authnotrequired => 0,
53 flagsrequired => {borrowers => 1},
54 debug => 1,
55 });
57 if ( $data->{'category_type'} eq 'C') {
58 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
59 my $cnt = scalar(@$catcodes);
60 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
61 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
64 $template->param( adultborrower => 1 ) if ( $data->{category_type} eq 'A' );
65 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
66 $template->param( picture => 1 ) if $picture;
68 $template->param(
69 borrowernumber => $borrowernumber,
70 firstname => $data->{'firstname'},
71 surname => $data->{'surname'},
72 cardnumber => $data->{'cardnumber'},
73 categorycode => $data->{'categorycode'},
74 category_type => $data->{'category_type'},
75 category_description => $data->{'description'},
76 address => $data->{'address'},
77 address2 => $data->{'address2'},
78 city => $data->{'city'},
79 zipcode => $data->{'zipcode'},
80 phone => $data->{'phone'},
81 email => $data->{'email'},
82 is_child => ($data->{'category_type'} eq 'C'),
84 output_html_with_http_headers $input, $cookie, $template->output;