Bug 6755 follow up
[koha.git] / members / mancredit.pl
blobae41b5776a364007b94d33c2b347e100f6b2834c
1 #!/usr/bin/perl
3 #written 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
7 # Copyright 2000-2002 Katipo Communications
8 # Copyright 2010 BibLibre
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License along
22 # with Koha; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use strict;
26 use warnings;
28 use C4::Auth;
29 use C4::Output;
30 use CGI;
32 use C4::Members;
33 use C4::Branch;
34 use C4::Accounts;
35 use C4::Items;
37 my $input=new CGI;
39 my $borrowernumber=$input->param('borrowernumber');
41 #get borrower details
42 my $data=GetMember('borrowernumber' => $borrowernumber);
43 my $add=$input->param('add');
45 if ($add){
46 if(checkauth($input)) {
47 my $barcode = $input->param('barcode');
48 my $itemnum;
49 if ($barcode) {
50 $itemnum = GetItemnumberFromBarcode($barcode);
52 my $desc = $input->param('desc');
53 my $note = $input->param('note');
54 my $amount = $input->param('amount') || 0;
55 $amount = -$amount;
56 my $type = $input->param('type');
57 manualinvoice( $borrowernumber, $itemnum, $desc, $type, $amount, $note );
58 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
60 } else {
61 my ($template, $loggedinuser, $cookie)
62 = get_template_and_user({template_name => "members/mancredit.tmpl",
63 query => $input,
64 type => "intranet",
65 authnotrequired => 0,
66 flagsrequired => {borrowers => 1, updatecharges => 1},
67 debug => 1,
68 });
70 if ( $data->{'category_type'} eq 'C') {
71 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
72 my $cnt = scalar(@$catcodes);
73 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
74 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
77 $template->param( adultborrower => 1 ) if ( $data->{category_type} eq 'A' );
78 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
79 $template->param( picture => 1 ) if $picture;
81 $template->param(
82 borrowernumber => $borrowernumber,
83 firstname => $data->{'firstname'},
84 surname => $data->{'surname'},
85 cardnumber => $data->{'cardnumber'},
86 categorycode => $data->{'categorycode'},
87 category_type => $data->{'category_type'},
88 categoryname => $data->{'description'},
89 address => $data->{'address'},
90 address2 => $data->{'address2'},
91 city => $data->{'city'},
92 state => $data->{'state'},
93 zipcode => $data->{'zipcode'},
94 country => $data->{'country'},
95 phone => $data->{'phone'},
96 email => $data->{'email'},
97 branchcode => $data->{'branchcode'},
98 branchname => GetBranchName($data->{'branchcode'}),
99 is_child => ($data->{'category_type'} eq 'C'),
101 output_html_with_http_headers $input, $cookie, $template->output;