4 #written 11/1/2000 by chris@katipo.oc.nz
5 #script to display borrowers account details
8 # Copyright 2000-2002 Katipo Communications
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>.
33 use Koha
::Cash
::Registers
;
35 use Koha
::Patron
::Categories
;
41 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
43 template_name
=> "members/boraccount.tt",
46 flagsrequired
=> { borrowers
=> 'edit_borrowers',
47 updatecharges
=> 'remaining_permissions'},
52 my $schema = Koha
::Database
->new->schema;
53 my $borrowernumber = $input->param('borrowernumber');
54 my $payment_id = $input->param('payment_id');
55 my $change_given = $input->param('change_given');
56 my $action = $input->param('action') || '';
57 my @renew_results = $input->param('renew_result');
59 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser );
60 my $library_id = C4
::Context
->userenv->{'branch'};
61 my $patron = Koha
::Patrons
->find( $borrowernumber );
63 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
67 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
70 if ( C4
::Context
->preference('UseCashRegisters') ) {
71 $registerid = scalar $input->param('registerid');
72 my $registers = Koha
::Cash
::Registers
->search(
73 { branch
=> $library_id, archived
=> 0 },
74 { order_by
=> { '-asc' => 'name' } }
77 if ( !$registers->count ) {
78 $template->param( error_registers
=> 1 );
83 my $default_register = Koha
::Cash
::Registers
->find(
84 { branch
=> $library_id, branch_default
=> 1 } );
85 $registerid = $default_register->id if $default_register;
87 $registerid = $registers->next->id if !$registerid;
90 registerid
=> $registerid,
91 registers
=> $registers,
96 if ( $action eq 'void' ) {
97 my $payment_id = scalar $input->param('accountlines_id');
98 my $payment = Koha
::Account
::Lines
->find( $payment_id );
102 if ( $action eq 'payout' ) {
103 my $payment_id = scalar $input->param('accountlines_id');
104 my $payment = Koha
::Account
::Lines
->find($payment_id);
105 my $amount = scalar $input->param('amount');
106 my $transaction_type = scalar $input->param('transaction_type');
109 my $payout = $payment->payout(
111 payout_type
=> $transaction_type,
112 branch
=> $library_id,
113 staff_id
=> $logged_in_user->id,
114 cash_register
=> $registerid,
115 interface
=> 'intranet',
123 if ( $action eq 'refund' ) {
124 my $charge_id = scalar $input->param('accountlines_id');
125 my $charge = Koha
::Account
::Lines
->find($charge_id);
126 my $amount = scalar $input->param('amount');
127 my $transaction_type = scalar $input->param('transaction_type');
131 my $refund = $charge->reduce(
133 reduction_type
=> 'REFUND',
134 branch
=> $library_id,
135 staff_id
=> $logged_in_user->id,
136 interface
=> 'intranet',
140 unless ( $transaction_type eq 'AC' ) {
141 my $payout = $refund->payout(
143 payout_type
=> $transaction_type,
144 branch
=> $library_id,
145 staff_id
=> $logged_in_user->id,
146 cash_register
=> $registerid,
147 interface
=> 'intranet',
156 if ( $action eq 'discount' ) {
157 my $charge_id = scalar $input->param('accountlines_id');
158 my $charge = Koha
::Account
::Lines
->find($charge_id);
159 my $amount = scalar $input->param('amount');
163 my $discount = $charge->reduce(
165 reduction_type
=> 'DISCOUNT',
166 branch
=> $library_id,
167 staff_id
=> $logged_in_user->id,
168 interface
=> 'intranet',
177 my $total = $patron->account->balance;
179 my @accountlines = Koha
::Account
::Lines
->search(
180 { borrowernumber
=> $patron->borrowernumber },
181 { order_by
=> { -desc
=> 'accountlines_id' } }
189 # Populate an arrayref with everything we need to display any
190 # renew errors that occurred based on what we were passed
191 my $renew_results_display = [];
192 foreach my $renew_result(@renew_results) {
193 my ($itemnumber, $success, $info) = split(/,/, $renew_result);
194 my $item = Koha
::Items
->find($itemnumber);
196 $info = uri_unescape
($info);
198 push @
{$renew_results_display}, {
208 total
=> sprintf("%.2f",$total),
209 totalcredit
=> $totalcredit,
210 accounts
=> \
@accountlines,
211 payment_id
=> $payment_id,
212 change_given
=> $change_given,
213 renew_results
=> $renew_results_display,
216 output_html_with_http_headers
$input, $cookie, $template->output;