Bug 18309: UNIMARC update from IFLA - authority (fr) (SCO)
[koha.git] / members / printfeercpt.pl
blob85d9b17e4b83cd20cbf433b037ad0bcc383956ba
1 #!/usr/bin/perl
4 #written 3rd May 2010 by kmkale@anantcorp.com adapted from boraccount.pl by chris@katipo.oc.nz
5 #script to print fee receipts
8 # Copyright Koustubha Kale
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use Modern::Perl;
27 use C4::Auth;
28 use C4::Output;
29 use CGI qw ( -utf8 );
30 use C4::Members;
31 use C4::Accounts;
32 use C4::Letters;
33 use Koha::Account::Lines;
34 use Koha::DateUtils;
35 use Koha::Patrons;
36 use Koha::Patron::Categories;
38 my $input=new CGI;
41 my ($template, $loggedinuser, $cookie)
42 = get_template_and_user({template_name => "members/printfeercpt.tt",
43 query => $input,
44 type => "intranet",
45 authnotrequired => 0,
46 flagsrequired => {borrowers => 'edit_borrowers', updatecharges => 'remaining_permissions'},
47 debug => 1,
48 });
50 my $borrowernumber=$input->param('borrowernumber');
51 my $action = $input->param('action') || '';
52 my $accountlines_id = $input->param('accountlines_id');
54 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
55 my $patron = Koha::Patrons->find( $borrowernumber );
56 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
58 #get account details
59 my $total = $patron->account->balance;
61 # FIXME This whole stuff is ugly and should be rewritten
62 # FIXME We should pass the $accts iterator to the template and do this formatting part there
63 my $accountline_object = Koha::Account::Lines->find($accountlines_id);
64 my $accountline = $accountline_object->unblessed;
65 my $totalcredit;
66 if($total <= 0){
67 $totalcredit = 1;
70 $accountline->{'amount'} += 0.00;
71 if ( $accountline->{'amount'} <= 0 ) {
72 $accountline->{'amountcredit'} = 1;
73 $accountline->{'amount'} *= -1.00;
75 $accountline->{'amountoutstanding'} += 0.00;
76 if ( $accountline->{'amountoutstanding'} <= 0 ) {
77 $accountline->{'amountoutstandingcredit'} = 1;
80 my $letter = C4::Letters::getletter( 'circulation', 'ACCOUNT_CREDIT', C4::Context::mybranch, 'print', $patron->lang );
82 my @account_offsets = Koha::Account::Offsets->search( { credit_id => $accountline_object->id } );
84 $template->param(
85 letter => $letter,
86 patron => $patron,
87 library => C4::Context::mybranch,
88 offsets => \@account_offsets,
89 credit => $accountline_object,
91 finesview => 1,
92 total => $total,
93 totalcredit => $totalcredit,
94 accounts => [$accountline], # FIXME There is always only 1 row!
97 output_html_with_http_headers $input, $cookie, $template->output;