3 #written 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
6 # Copyright 2000-2002 Katipo Communications
7 # Copyright 2010 BibLibre
8 # Copyright 2019 PTFS Europe
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>.
40 use Koha
::Old
::Checkouts
;
42 use Koha
::Patron
::Categories
;
43 use Koha
::Account
::DebitTypes
;
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
48 template_name
=> "members/maninvoice.tt",
52 borrowers
=> 'edit_borrowers',
53 updatecharges
=> 'remaining_permissions'
58 my $borrowernumber = $input->param('borrowernumber');
59 my $patron = Koha
::Patrons
->find($borrowernumber);
61 print $input->redirect(
62 "/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
66 my $logged_in_user = Koha
::Patrons
->find($loggedinuser);
67 output_and_exit_if_error
(
72 logged_in_user
=> $logged_in_user,
73 current_patron
=> $patron
77 my $library_id = C4
::Context
->userenv->{'branch'};
78 my $desc = $input->param('desc');
79 my $amount = $input->param('amount');
80 my $note = $input->param('note');
81 my $debit_type = $input->param('type');
82 my $barcode = $input->param('barcode');
91 my $add = $input->param('add');
93 output_and_exit
( $input, $cookie, $template, 'wrong_csrf_token' )
94 unless Koha
::Token
->new->check_csrf(
96 session_id
=> scalar $input->cookie('CGISESSID'),
97 token
=> scalar $input->param('csrf_token'),
101 # Note: If the logged in user is not allowed to see this patron an invoice can be forced
102 # Here we are trusting librarians not to hack the system
103 my $desc = $input->param('desc');
104 my $amount = $input->param('amount');
105 my $note = $input->param('note');
106 my $debit_type = $input->param('type');
108 # If barcode is passed, attempt to find the associated item
111 my $olditem; # FIXME: When items and deleted_items are merged, we can remove this
114 my $item = Koha
::Items
->find( { barcode
=> $barcode } );
116 $item_id = $item->itemnumber;
119 $item = Koha
::Old
::Items
->search( { barcode
=> $barcode },
120 { order_by
=> { -desc
=> 'timestamp' }, rows
=> 1 } );
122 $item_id = $item->next->itemnumber;
126 $template->param( error
=> 'itemnumber' );
131 if ( ( $debit_type eq 'LOST' ) && $item_id ) {
132 my $checkouts = Koha
::Checkouts
->search(
134 itemnumber
=> $item_id,
135 borrowernumber
=> $borrowernumber
141 : Koha
::Old
::Checkouts
->search(
143 itemnumber
=> $item_id,
144 borrowernumber
=> $borrowernumber
146 { order_by
=> { -desc
=> 'returndate' }, rows
=> 1 }
148 $issue_id = $checkout ?
$checkout->issue_id : undef;
154 $patron->account->add_debit(
157 description
=> $desc,
159 user_id
=> $logged_in_user->borrowernumber,
160 interface
=> 'intranet',
161 library_id
=> $library_id,
163 ( $olditem ?
() : ( item_id
=> $item_id ) ),
164 issue_id
=> $issue_id
168 if ( C4
::Context
->preference('AccountAutoReconcile') ) {
169 $patron->account->reconcile_balance;
172 if ( $add eq 'save and pay' ) {
173 print $input->redirect(
174 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber"
178 print $input->redirect(
179 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
187 if ( ref($error) eq 'Koha::Exceptions::Object::FKConstraint' ) {
188 $template->param( error
=> $error->broken_fk );
191 $template->param( error
=> $error );
197 my @debit_types = Koha
::Account
::DebitTypes
->search_with_library_limits(
198 { can_be_invoiced
=> 1, archived
=> 0 },
202 debit_types
=> \
@debit_types,
203 csrf_token
=> Koha
::Token
->new->generate_csrf(
204 { session_id
=> scalar $input->cookie('CGISESSID') }
209 output_html_with_http_headers
$input, $cookie, $template->output;