Merge commit 'pianohacker-koha/prefs-submit' into master
[koha.git] / members / mancredit.pl
1 #!/usr/bin/perl
2
3 #written 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 warnings;
26
27 use C4::Auth;
28 use C4::Output;
29 use CGI;
30
31 use C4::Members;
32 use C4::Branch;
33 use C4::Accounts;
34 use C4::Items;
35
36 my $input=new CGI;
37
38 my $borrowernumber=$input->param('borrowernumber');
39
40 #get borrower details
41 my $data=GetMember('borrowernumber' => $borrowernumber);
42 my $add=$input->param('add');
43
44 if ($add){
45     my $barcode=$input->param('barcode');
46     my $itemnum = GetItemnumberFromBarcode($barcode) if $barcode;
47     my $desc=$input->param('desc');
48     my $amount=$input->param('amount') || 0;
49     $amount = -$amount;
50     my $type=$input->param('type');
51     manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
52     print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
53 } else {
54         my ($template, $loggedinuser, $cookie)
55           = get_template_and_user({template_name => "members/mancredit.tmpl",
56                                           query => $input,
57                                           type => "intranet",
58                                           authnotrequired => 0,
59                                           flagsrequired => {borrowers => 1, updatecharges => 1},
60                                           debug => 1,
61                                           });
62                                           
63     if ( $data->{'category_type'} eq 'C') {
64         my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
65         my $cnt = scalar(@$catcodes);
66         $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
67         $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
68     }
69                                           
70     $template->param( adultborrower => 1 ) if ( $data->{category_type} eq 'A' );
71     my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
72     $template->param( picture => 1 ) if $picture;
73     
74     $template->param(
75         borrowernumber => $borrowernumber,
76         firstname => $data->{'firstname'},
77         surname  => $data->{'surname'},
78                     cardnumber => $data->{'cardnumber'},
79                     categorycode => $data->{'categorycode'},
80                     category_type => $data->{'category_type'},
81                     categoryname  => $data->{'description'},
82                     address => $data->{'address'},
83                     address2 => $data->{'address2'},
84                     city => $data->{'city'},
85                     zipcode => $data->{'zipcode'},
86                     country => $data->{'country'},
87                     phone => $data->{'phone'},
88                     email => $data->{'email'},
89                     branchcode => $data->{'branchcode'},
90                     branchname => GetBranchName($data->{'branchcode'}),
91                     is_child        => ($data->{'category_type'} eq 'C'),
92         );
93     output_html_with_http_headers $input, $cookie, $template->output;
94 }