Bug 5453 Move declarations out of conditionals
[koha.git] / members / maninvoice.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 # Copyright 2010 BibLibre
9 #
10 # This file is part of Koha.
11 #
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.
16 #
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.
20 #
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.
24
25 use strict;
26 use warnings;
27
28 use C4::Auth;
29 use C4::Output;
30 use CGI;
31 use C4::Members;
32 use C4::Accounts;
33 use C4::Items;
34 use C4::Branch;
35
36 my $input=new CGI;
37
38 my $borrowernumber=$input->param('borrowernumber');
39
40
41 # get borrower details
42 my $data=GetMember('borrowernumber'=>$borrowernumber);
43 my $add=$input->param('add');
44 if ($add){
45     if(checkauth($input)) {
46         #  print $input->header;
47         my $barcode=$input->param('barcode');
48         my $itemnum;
49         if ($barcode) {
50             $itemnum = GetItemnumberFromBarcode($barcode);
51         }
52         my $desc=$input->param('desc');
53         my $amount=$input->param('amount');
54         my $type=$input->param('type');
55         my $note    = $input->param('note');
56         my $error   = manualinvoice( $borrowernumber, $itemnum, $desc, $type, $amount, $note );
57         if ($error) {
58             my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
59                 {   template_name   => "members/maninvoice.tmpl",
60                     query           => $input,
61                     type            => "intranet",
62                     authnotrequired => 0,
63                     flagsrequired   => { borrowers => 1 },
64                     debug           => 1,
65                 }
66             );
67             if ( $error =~ /FOREIGN KEY/ && $error =~ /itemnumber/ ) {
68                 $template->param( 'ITEMNUMBER' => 1 );
69             }
70             $template->param( 'ERROR' => $error );
71             output_html_with_http_headers $input, $cookie, $template->output;
72         } else {
73             print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
74             exit;
75         }
76     }
77 } else {
78
79         my ($template, $loggedinuser, $cookie)
80         = get_template_and_user({template_name => "members/maninvoice.tmpl",
81                                         query => $input,
82                                         type => "intranet",
83                                         authnotrequired => 0,
84                                         flagsrequired => {borrowers => 1, updatecharges => 1},
85                                         debug => 1,
86                                         });
87                                         
88   # get authorised values with type of MANUAL_INV
89   my @invoice_types;
90   my $dbh = C4::Context->dbh;
91   my $sth = $dbh->prepare('SELECT * FROM authorised_values WHERE category = "MANUAL_INV"');
92   $sth->execute();
93   while ( my $row = $sth->fetchrow_hashref() ) {
94     push @invoice_types, $row;
95   }
96   $template->param( invoice_types_loop => \@invoice_types );
97
98     if ( $data->{'category_type'} eq 'C') {
99         my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
100         my $cnt = scalar(@$catcodes);
101         $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
102         $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
103     }
104
105     $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
106     my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
107     $template->param( picture => 1 ) if $picture;
108
109         $template->param(
110                 borrowernumber => $borrowernumber,
111                 firstname => $data->{'firstname'},
112                 surname  => $data->{'surname'},
113                 cardnumber => $data->{'cardnumber'},
114                 categorycode => $data->{'categorycode'},
115                 category_type => $data->{'category_type'},
116                 categoryname  => $data->{'description'},
117                 address => $data->{'address'},
118                 address2 => $data->{'address2'},
119                 city => $data->{'city'},
120                 state => $data->{'state'},
121                 zipcode => $data->{'zipcode'},
122                 country => $data->{'country'},
123                 phone => $data->{'phone'},
124                 email => $data->{'email'},
125                 branchcode => $data->{'branchcode'},
126                 branchname => GetBranchName($data->{'branchcode'}),
127                 is_child        => ($data->{'category_type'} eq 'C'),
128     );
129     output_html_with_http_headers $input, $cookie, $template->output;
130 }