Added a note that this module is slated to be removed
[koha.git] / 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::Output;
26 use CGI;
27 use HTML::Template;
28 use C4::Search;
29 use C4::Accounts2;
30 my $input=new CGI;
31
32
33 my $bornum=$input->param('bornum');
34 #get borrower details
35 my $data=borrdata('',$bornum);
36 my $add=$input->param('add');
37 if ($add){
38   my $itemnum=$input->param('itemnum');
39   my $desc=$input->param('desc');
40   my $amount=$input->param('amount');
41   $amount = -$amount;
42   my $type=$input->param('type');
43   manualinvoice($bornum,$itemnum,$desc,$type,$amount);
44   print $input->redirect("/cgi-bin/koha/moremember.pl?bornum=$bornum");
45 } else {
46         my $template = gettemplate("mancredit.tmpl");
47         $template->param( bornum => $bornum);
48         print "Content-Type: text/html\n\n", $template->output;
49 }