Bug 17829: Move GetMember to Koha::Patron
[koha.git] / members / printinvoice.pl
1 #!/usr/bin/perl
2
3 #written 3rd May 2010 by kmkale@anantcorp.com adapted from boraccount.pl by chris@katipo.oc.nz
4 #script to print fee receipts
5
6 # Copyright Koustubha Kale
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 use strict;
24 use warnings;
25
26 use C4::Auth;
27 use C4::Output;
28 use Koha::DateUtils;
29 use CGI qw ( -utf8 );
30 use C4::Members;
31 use C4::Accounts;
32
33 use Koha::Patrons;
34 use Koha::Patron::Categories;
35
36 my $input = new CGI;
37
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39     {   template_name   => "members/printinvoice.tt",
40         query           => $input,
41         type            => "intranet",
42         authnotrequired => 0,
43         flagsrequired => { borrowers => 1, updatecharges => 'remaining_permissions' },
44         debug           => 1,
45     }
46 );
47
48 my $borrowernumber  = $input->param('borrowernumber');
49 my $action          = $input->param('action') || '';
50 my $accountlines_id = $input->param('accountlines_id');
51
52 my $patron = Koha::Patrons->find( $borrowernumber );
53 my $category = $patron->category;
54 my $data = $patron->unblessed;
55 $data->{description} = $category->description;
56 $data->{category_type} = $category->category_type;
57
58 if ( $data->{'category_type'} eq 'C' ) {
59     my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
60     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
61     $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
62 }
63
64 #get account details
65 my ( $total, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
66 my $totalcredit;
67 if ( $total <= 0 ) {
68     $totalcredit = 1;
69 }
70
71 my @accountrows;    # this is for the tmpl-loop
72
73 my $toggle;
74 for ( my $i = 0 ; $i < $numaccts ; $i++ ) {
75     next if ( $accts->[$i]{'accountlines_id'} ne $accountlines_id );
76
77     if ( $i % 2 ) {
78         $toggle = 0;
79     } else {
80         $toggle = 1;
81     }
82
83     $accts->[$i]{'toggle'} = $toggle;
84     $accts->[$i]{'amount'} += 0.00;
85
86     if ( $accts->[$i]{'amount'} <= 0 ) {
87         $accts->[$i]{'amountcredit'} = 1;
88     }
89
90     $accts->[$i]{'amountoutstanding'} += 0.00;
91     if ( $accts->[$i]{'amountoutstanding'} <= 0 ) {
92         $accts->[$i]{'amountoutstandingcredit'} = 1;
93     }
94
95     my %row = (
96         'date'                    => output_pref({ dt => dt_from_string( $accts->[$i]{'date'} ), dateonly => 1 }),
97         'amountcredit'            => $accts->[$i]{'amountcredit'},
98         'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'},
99         'toggle'                  => $accts->[$i]{'toggle'},
100         'description'             => $accts->[$i]{'description'},
101         'itemnumber'              => $accts->[$i]{'itemnumber'},
102         'biblionumber'            => $accts->[$i]{'biblionumber'},
103         'amount'                  => sprintf( "%.2f", $accts->[$i]{'amount'} ),
104         'amountoutstanding'       => sprintf( "%.2f", $accts->[$i]{'amountoutstanding'} ),
105         'accountno'               => $accts->[$i]{'accountno'},
106         accounttype               => $accts->[$i]{accounttype},
107         'note'                    => $accts->[$i]{'note'},
108     );
109
110     if ( $accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU' ) {
111         $row{'printtitle'} = 1;
112         $row{'title'}      = $accts->[$i]{'title'};
113     }
114
115     push( @accountrows, \%row );
116 }
117
118 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' || $data->{'category_type'} eq 'I' );
119
120 $template->param( picture => 1 ) if $patron->image;
121
122 $template->param(
123     finesview      => 1,
124     firstname      => $data->{'firstname'},
125     surname        => $data->{'surname'},
126     borrowernumber => $borrowernumber,
127     cardnumber     => $data->{'cardnumber'},
128     categorycode   => $data->{'categorycode'},
129     category_type  => $data->{'category_type'},
130     categoryname   => $data->{'description'},
131     address        => $data->{'address'},
132     address2       => $data->{'address2'},
133     city           => $data->{'city'},
134     zipcode        => $data->{'zipcode'},
135     country        => $data->{'country'},
136     phone          => $data->{'phone'},
137     email          => $data->{'email'},
138     branchcode     => $data->{'branchcode'},
139     total          => sprintf( "%.2f", $total ),
140     totalcredit    => $totalcredit,
141     is_child       => ( $data->{'category_type'} eq 'C' ),
142     accounts       => \@accountrows
143 );
144
145 output_html_with_http_headers $input, $cookie, $template->output;