Bug 15208: Followup to reorder words
[koha.git] / members / printinvoice.pl
blob67bf11cbcfc1df4ae34adb99557a79e8c47f0479
1 #!/usr/bin/perl
3 #writen 3rd May 2010 by kmkale@anantcorp.com adapted from boraccount.pl by chris@katipo.oc.nz
4 #script to print fee receipts
6 # Copyright Koustubha Kale
8 # This file is part of Koha.
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.
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.
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>.
23 use strict;
24 use warnings;
26 use C4::Auth;
27 use C4::Output;
28 use Koha::DateUtils;
29 use CGI qw ( -utf8 );
30 use C4::Members;
31 use C4::Branch;
32 use C4::Accounts;
34 my $input = new CGI;
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
37 { template_name => "members/printinvoice.tt",
38 query => $input,
39 type => "intranet",
40 authnotrequired => 0,
41 flagsrequired => { borrowers => 1, updatecharges => 'remaining_permissions' },
42 debug => 1,
46 my $borrowernumber = $input->param('borrowernumber');
47 my $action = $input->param('action') || '';
48 my $accountlines_id = $input->param('accountlines_id');
50 #get borrower details
51 my $data = GetMember( 'borrowernumber' => $borrowernumber );
53 if ( $data->{'category_type'} eq 'C' ) {
54 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
55 my $cnt = scalar(@$catcodes);
56 $template->param( 'CATCODE_MULTI' => 1 ) if $cnt > 1;
57 $template->param( 'catcode' => $catcodes->[0] ) if $cnt == 1;
60 #get account details
61 my ( $total, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
62 my $totalcredit;
63 if ( $total <= 0 ) {
64 $totalcredit = 1;
67 my @accountrows; # this is for the tmpl-loop
69 my $toggle;
70 for ( my $i = 0 ; $i < $numaccts ; $i++ ) {
71 next if ( $accts->[$i]{'accountlines_id'} ne $accountlines_id );
73 if ( $i % 2 ) {
74 $toggle = 0;
75 } else {
76 $toggle = 1;
79 $accts->[$i]{'toggle'} = $toggle;
80 $accts->[$i]{'amount'} += 0.00;
82 if ( $accts->[$i]{'amount'} <= 0 ) {
83 $accts->[$i]{'amountcredit'} = 1;
86 $accts->[$i]{'amountoutstanding'} += 0.00;
87 if ( $accts->[$i]{'amountoutstanding'} <= 0 ) {
88 $accts->[$i]{'amountoutstandingcredit'} = 1;
91 my %row = (
92 'date' => output_pref({ dt => dt_from_string( $accts->[$i]{'date'} ), dateonly => 1 }),
93 'amountcredit' => $accts->[$i]{'amountcredit'},
94 'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'},
95 'toggle' => $accts->[$i]{'toggle'},
96 'description' => $accts->[$i]{'description'},
97 'itemnumber' => $accts->[$i]{'itemnumber'},
98 'biblionumber' => $accts->[$i]{'biblionumber'},
99 'amount' => sprintf( "%.2f", $accts->[$i]{'amount'} ),
100 'amountoutstanding' => sprintf( "%.2f", $accts->[$i]{'amountoutstanding'} ),
101 'accountno' => $accts->[$i]{'accountno'},
102 accounttype => $accts->[$i]{accounttype},
105 if ( $accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU' ) {
106 $row{'printtitle'} = 1;
107 $row{'title'} = $accts->[$i]{'title'};
110 push( @accountrows, \%row );
113 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
115 my ( $picture, $dberror ) = GetPatronImage( $data->{'borrowernumber'} );
116 $template->param( picture => 1 ) if $picture;
118 $template->param(
119 finesview => 1,
120 firstname => $data->{'firstname'},
121 surname => $data->{'surname'},
122 borrowernumber => $borrowernumber,
123 cardnumber => $data->{'cardnumber'},
124 categorycode => $data->{'categorycode'},
125 category_type => $data->{'category_type'},
126 categoryname => $data->{'description'},
127 address => $data->{'address'},
128 address2 => $data->{'address2'},
129 city => $data->{'city'},
130 zipcode => $data->{'zipcode'},
131 country => $data->{'country'},
132 phone => $data->{'phone'},
133 email => $data->{'email'},
134 branchcode => $data->{'branchcode'},
135 branchname => GetBranchName( $data->{'branchcode'} ),
136 total => sprintf( "%.2f", $total ),
137 totalcredit => $totalcredit,
138 is_child => ( $data->{'category_type'} eq 'C' ),
139 accounts => \@accountrows
142 output_html_with_http_headers $input, $cookie, $template->output;