fix to remove leading/trailing whitespace from entered barcode.
[koha.git] / members / maninvoice.pl
blob4ad20672290b2c3420ece36a6653c30d9faa57af
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;
30 use C4::Items;
31 use C4::Branch;
33 my $input=new CGI;
35 my $borrowernumber=$input->param('borrowernumber');
37 # get borrower details
38 my $data=GetMember($borrowernumber,'borrowernumber');
39 my $add=$input->param('add');
40 if ($add){
41 # print $input->header;
42 my $barcode=$input->param('barcode');
43 my $itemnum = GetItemnumberFromBarcode($barcode) if $barcode;
44 my $desc=$input->param('desc');
45 my $amount=$input->param('amount');
46 my $type=$input->param('type');
47 my $error=manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
48 if ($error){
49 my ($template, $loggedinuser, $cookie)
50 = get_template_and_user({template_name => "members/maninvoice.tmpl",
51 query => $input,
52 type => "intranet",
53 authnotrequired => 0,
54 flagsrequired => {borrowers => 1},
55 debug => 1,
56 });
57 if ($error =~ /FOREIGN KEY/ && $error =~ /itemnumber/){
58 $template->param('ITEMNUMBER' => 1);
60 $template->param('ERROR' => $error);
61 output_html_with_http_headers $input, $cookie, $template->output;
63 else {
64 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
65 exit;
67 } else {
69 my ($template, $loggedinuser, $cookie)
70 = get_template_and_user({template_name => "members/maninvoice.tmpl",
71 query => $input,
72 type => "intranet",
73 authnotrequired => 0,
74 flagsrequired => {borrowers => 1, updatecharges => 1},
75 debug => 1,
76 });
78 if ( $data->{'category_type'} eq 'C') {
79 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
80 my $cnt = scalar(@$catcodes);
81 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
82 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
85 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
86 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
87 $template->param( picture => 1 ) if $picture;
89 $template->param(
90 borrowernumber => $borrowernumber,
91 firstname => $data->{'firstname'},
92 surname => $data->{'surname'},
93 cardnumber => $data->{'cardnumber'},
94 categorycode => $data->{'categorycode'},
95 category_type => $data->{'category_type'},
96 categoryname => $data->{'description'},
97 address => $data->{'address'},
98 address2 => $data->{'address2'},
99 city => $data->{'city'},
100 zipcode => $data->{'zipcode'},
101 phone => $data->{'phone'},
102 email => $data->{'email'},
103 branchcode => $data->{'branchcode'},
104 branchname => GetBranchName($data->{'branchcode'}),
105 is_child => ($data->{'category_type'} eq 'C'),
107 output_html_with_http_headers $input, $cookie, $template->output;