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>.
32 use Koha
::Cash
::Registers
;
34 use Koha
::Patron
::Categories
;
39 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
41 template_name
=> "members/boraccount.tt",
45 flagsrequired
=> { borrowers
=> 'edit_borrowers',
46 updatecharges
=> 'remaining_permissions'},
51 my $schema = Koha
::Database
->new->schema;
52 my $borrowernumber = $input->param('borrowernumber');
53 my $payment_id = $input->param('payment_id');
54 my $change_given = $input->param('change_given');
55 my $action = $input->param('action') || '';
57 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
58 my $library_id = C4
::Context
->userenv->{'branch'};
59 my $patron = Koha
::Patrons
->find( $borrowernumber );
61 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
65 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
68 if ( C4
::Context
->preference('UseCashRegisters') ) {
69 $registerid = scalar $input->param('registerid');
70 my $registers = Koha
::Cash
::Registers
->search(
71 { branch
=> $library_id, archived
=> 0 },
72 { order_by
=> { '-asc' => 'name' } }
75 if ( !$registers->count ) {
76 $template->param( error_registers
=> 1 );
81 my $default_register = Koha
::Cash
::Registers
->find(
82 { branch
=> $library_id, branch_default
=> 1 } );
83 $registerid = $default_register->id if $default_register;
85 $registerid = $registers->next->id if !$registerid;
88 registerid
=> $registerid,
89 registers
=> $registers,
94 if ( $action eq 'void' ) {
95 my $payment_id = scalar $input->param('accountlines_id');
96 my $payment = Koha
::Account
::Lines
->find( $payment_id );
100 if ( $action eq 'payout' ) {
101 my $payment_id = scalar $input->param('accountlines_id');
102 my $payment = Koha
::Account
::Lines
->find($payment_id);
103 my $amount = scalar $input->param('amount');
104 my $transaction_type = scalar $input->param('transaction_type');
107 my $payout = $payment->payout(
109 payout_type
=> $transaction_type,
110 branch
=> $library_id,
111 staff_id
=> $logged_in_user->id,
112 cash_register
=> $registerid,
113 interface
=> 'intranet',
122 my $total = $patron->account->balance;
124 my @accountlines = Koha
::Account
::Lines
->search(
125 { borrowernumber
=> $patron->borrowernumber },
126 { order_by
=> { -desc
=> 'accountlines_id' } }
137 total
=> sprintf("%.2f",$total),
138 totalcredit
=> $totalcredit,
139 accounts
=> \
@accountlines,
140 payment_id
=> $payment_id,
141 change_given
=> $change_given,
144 output_html_with_http_headers
$input, $cookie, $template->output;