[23/40] Initial work on label export interface.
[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 use C4::Branch;
32
33 my $input=new CGI;
34
35 my $borrowernumber=$input->param('borrowernumber');
36
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);
59                 }
60                 $template->param('ERROR' => $error);
61         output_html_with_http_headers $input, $cookie, $template->output;
62         }
63         else {
64                 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
65                 exit;
66         }
67 } else {
68
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                                         });
77                                         
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;
83     }
84
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;
88
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                 country => $data->{'country'},
102                 phone => $data->{'phone'},
103                 email => $data->{'email'},
104                 branchcode => $data->{'branchcode'},
105                 branchname => GetBranchName($data->{'branchcode'}),
106                 is_child        => ($data->{'category_type'} eq 'C'),
107     );
108     output_html_with_http_headers $input, $cookie, $template->output;
109 }