Additional help files
[koha.git] / members / maninvoice.pl
blob6e3f22513b8d57c45498281186cce276332bc79f
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;
28 use C4::Members;
29 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');
38 if ($add){
39 # print $input->header;
40 my $itemnum=$input->param('itemnum');
41 my $desc=$input->param('desc');
42 my $amount=$input->param('amount');
43 my $type=$input->param('type');
44 my $error=manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
45 if ($error){
46 my ($template, $loggedinuser, $cookie)
47 = get_template_and_user({template_name => "members/maninvoice.tmpl",
48 query => $input,
49 type => "intranet",
50 authnotrequired => 0,
51 flagsrequired => {borrowers => 1},
52 debug => 1,
53 });
54 if ($error =~ /FOREIGN KEY/ && $error =~ /itemnumber/){
55 $template->param('ITEMNUMBER' => 1);
57 $template->param('ERROR' => $error);
58 output_html_with_http_headers $input, $cookie, $template->output;
60 else {
61 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
62 exit;
64 } else {
66 my ($template, $loggedinuser, $cookie)
67 = get_template_and_user({template_name => "members/maninvoice.tmpl",
68 query => $input,
69 type => "intranet",
70 authnotrequired => 0,
71 flagsrequired => {borrowers => 1},
72 debug => 1,
73 });
75 if ( $data->{'category_type'} eq 'C') {
76 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
77 my $cnt = scalar(@$catcodes);
78 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
79 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
82 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
83 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
84 $template->param( picture => 1 ) if $picture;
86 $template->param(
87 borrowernumber => $borrowernumber,
88 firstname => $data->{'firstname'},
89 surname => $data->{'surname'},
90 cardnumber => $data->{'cardnumber'},
91 categorycode => $data->{'categorycode'},
92 category_type => $data->{'category_type'},
93 category_description => $data->{'description'},
94 address => $data->{'address'},
95 address2 => $data->{'address2'},
96 city => $data->{'city'},
97 zipcode => $data->{'zipcode'},
98 phone => $data->{'phone'},
99 email => $data->{'email'},
100 is_child => ($data->{'category_type'} eq 'C'),
102 output_html_with_http_headers $input, $cookie, $template->output;