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",
47 flagsrequired
=> { borrowers
=> 'edit_borrowers',
48 updatecharges
=> 'remaining_permissions'},
53 my $schema = Koha
::Database
->new->schema;
54 my $borrowernumber = $input->param('borrowernumber');
55 my $payment_id = $input->param('payment_id');
56 my $change_given = $input->param('change_given');
57 my $action = $input->param('action') || '';
58 my @renew_results = $input->param('renew_result');
60 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser );
61 my $library_id = C4
::Context
->userenv->{'branch'};
62 my $patron = Koha
::Patrons
->find( $borrowernumber );
64 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
68 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
71 if ( C4
::Context
->preference('UseCashRegisters') ) {
72 $registerid = scalar $input->param('registerid');
73 my $registers = Koha
::Cash
::Registers
->search(
74 { branch
=> $library_id, archived
=> 0 },
75 { order_by
=> { '-asc' => 'name' } }
78 if ( !$registers->count ) {
79 $template->param( error_registers
=> 1 );
84 my $default_register = Koha
::Cash
::Registers
->find(
85 { branch
=> $library_id, branch_default
=> 1 } );
86 $registerid = $default_register->id if $default_register;
88 $registerid = $registers->next->id if !$registerid;
91 registerid
=> $registerid,
92 registers
=> $registers,
97 if ( $action eq 'void' ) {
98 my $payment_id = scalar $input->param('accountlines_id');
99 my $payment = Koha
::Account
::Lines
->find( $payment_id );
103 if ( $action eq 'payout' ) {
104 my $payment_id = scalar $input->param('accountlines_id');
105 my $payment = Koha
::Account
::Lines
->find($payment_id);
106 my $amount = scalar $input->param('amount');
107 my $transaction_type = scalar $input->param('transaction_type');
110 my $payout = $payment->payout(
112 payout_type
=> $transaction_type,
113 branch
=> $library_id,
114 staff_id
=> $logged_in_user->id,
115 cash_register
=> $registerid,
116 interface
=> 'intranet',
124 if ( $action eq 'refund' ) {
125 my $charge_id = scalar $input->param('accountlines_id');
126 my $charge = Koha
::Account
::Lines
->find($charge_id);
127 my $amount = scalar $input->param('amount');
128 my $transaction_type = scalar $input->param('transaction_type');
132 my $refund = $charge->reduce(
134 reduction_type
=> 'REFUND',
135 branch
=> $library_id,
136 staff_id
=> $logged_in_user->id,
137 interface
=> 'intranet',
141 unless ( $transaction_type eq 'AC' ) {
142 my $payout = $refund->payout(
144 payout_type
=> $transaction_type,
145 branch
=> $library_id,
146 staff_id
=> $logged_in_user->id,
147 cash_register
=> $registerid,
148 interface
=> 'intranet',
157 if ( $action eq 'discount' ) {
158 my $charge_id = scalar $input->param('accountlines_id');
159 my $charge = Koha
::Account
::Lines
->find($charge_id);
160 my $amount = scalar $input->param('amount');
164 my $discount = $charge->reduce(
166 reduction_type
=> 'DISCOUNT',
167 branch
=> $library_id,
168 staff_id
=> $logged_in_user->id,
169 interface
=> 'intranet',
178 my $total = $patron->account->balance;
180 my @accountlines = Koha
::Account
::Lines
->search(
181 { borrowernumber
=> $patron->borrowernumber },
182 { order_by
=> { -desc
=> 'accountlines_id' } }
190 # Populate an arrayref with everything we need to display any
191 # renew errors that occurred based on what we were passed
192 my $renew_results_display = [];
193 foreach my $renew_result(@renew_results) {
194 my ($itemnumber, $success, $info) = split(/,/, $renew_result);
195 my $item = Koha
::Items
->find($itemnumber);
197 $info = uri_unescape
($info);
199 push @
{$renew_results_display}, {
209 total
=> sprintf("%.2f",$total),
210 totalcredit
=> $totalcredit,
211 accounts
=> \
@accountlines,
212 payment_id
=> $payment_id,
213 change_given
=> $change_given,
214 renew_results
=> $renew_results_display,
217 output_html_with_http_headers
$input, $cookie, $template->output;