2433: Cannot apply manual credits with an item number
[koha.git] / members / maninvoice.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::Auth;
26 use C4::Output;
27 use CGI;
28 use C4::Members;
29 use C4::Accounts;
30 use C4::Items;
31
32 my $input=new CGI;
33
34 my $borrowernumber=$input->param('borrowernumber');
35
36 # get borrower details
37 my $data=GetMember($borrowernumber,'borrowernumber');
38 my $add=$input->param('add');
39 if ($add){
40 #  print $input->header;
41     my $barcode=$input->param('barcode');
42         my $itemnum = GetItemnumberFromBarcode($barcode) if $barcode;
43     my $desc=$input->param('desc');
44     my $amount=$input->param('amount');
45     my $type=$input->param('type');
46     my $error=manualinvoice($borrowernumber,$itemnum,$desc,$type,$amount);
47         if ($error){
48                 my ($template, $loggedinuser, $cookie)
49                   = get_template_and_user({template_name => "members/maninvoice.tmpl",
50                                         query => $input,
51                                         type => "intranet",
52                                         authnotrequired => 0,
53                                         flagsrequired => {borrowers => 1},
54                                         debug => 1,
55                                         });
56                 if ($error =~ /FOREIGN KEY/ && $error =~ /itemnumber/){
57                         $template->param('ITEMNUMBER' => 1);
58                 }
59                 $template->param('ERROR' => $error);
60         output_html_with_http_headers $input, $cookie, $template->output;
61         }
62         else {
63                 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
64                 exit;
65         }
66 } else {
67
68         my ($template, $loggedinuser, $cookie)
69         = get_template_and_user({template_name => "members/maninvoice.tmpl",
70                                         query => $input,
71                                         type => "intranet",
72                                         authnotrequired => 0,
73                                         flagsrequired => {borrowers => 1},
74                                         debug => 1,
75                                         });
76                                         
77     if ( $data->{'category_type'} eq 'C') {
78         my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
79         my $cnt = scalar(@$catcodes);
80         $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
81         $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
82     }
83
84     $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
85     my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
86     $template->param( picture => 1 ) if $picture;
87
88         $template->param(
89                     borrowernumber => $borrowernumber,
90                     firstname => $data->{'firstname'},
91                     surname  => $data->{'surname'},
92                                         cardnumber => $data->{'cardnumber'},
93                                     categorycode => $data->{'categorycode'},
94                                 category_type => $data->{'category_type'},
95                                     category_description => $data->{'description'},
96                                     address => $data->{'address'},
97                                         address2 => $data->{'address2'},
98                                     city => $data->{'city'},
99                                         zipcode => $data->{'zipcode'},
100                                         phone => $data->{'phone'},
101                                         email => $data->{'email'},
102                                         is_child        => ($data->{'category_type'} eq 'C'),
103     );
104     output_html_with_http_headers $input, $cookie, $template->output;
105 }