Adding Circulation and Overdues modules
[koha.git] / members / mancredit.pl
1 #!/usr/bin/perl
2
3 #wrriten 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
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.
15 #
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.
19 #
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
23
24 use strict;
25 use C4::Auth;
26 use C4::Output;
27 use C4::Interface::CGI::Output;
28 use CGI;
29
30 use C4::Members;
31 use C4::Accounts;
32 my $input=new CGI;
33
34 my $borrowernumber=$input->param('borrowernumber');
35
36 #get borrower details
37 my $data=borrdata('',$borrowernumber);
38 my $add=$input->param('add');
39
40 if ($add){
41     my $itemnum=$input->param('itemnum');
42     my $desc=$input->param('desc');
43     my $amount=$input->param('amount');
44     $amount = -$amount;
45     my $type=$input->param('type');
46     manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
47     print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
48 } else {
49         my ($template, $loggedinuser, $cookie)
50         = get_template_and_user({template_name => "members/mancredit.tmpl",
51                                         query => $input,
52                                         type => "intranet",
53                                         authnotrequired => 0,
54                                         flagsrequired => {borrowers => 1},
55                                         debug => 1,
56                                         });
57     $template->param(
58                     borrowernumber => $borrowernumber,
59                     firstname => $data->{'firstname'},
60                     surname  => $data->{'surname'},
61     );
62         print $input->header(
63             -type => guesstype($template->output),
64             -cookie => $cookie
65         ),$template->output;
66
67 }