96cc447045
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
209 lines
6.3 KiB
Perl
Executable file
209 lines
6.3 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
#written 11/1/2000 by chris@katipo.oc.nz
|
|
#script to display borrowers account details
|
|
|
|
# Copyright 2000-2002 Katipo Communications
|
|
# Copyright 2010 BibLibre
|
|
# Copyright 2019 PTFS Europe
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
use Try::Tiny;
|
|
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use CGI qw ( -utf8 );
|
|
use C4::Members;
|
|
use C4::Accounts;
|
|
use C4::Items;
|
|
use Koha::Token;
|
|
|
|
use Koha::Patrons;
|
|
use Koha::Items;
|
|
use Koha::Old::Items;
|
|
use Koha::Checkouts;
|
|
use Koha::Old::Checkouts;
|
|
|
|
use Koha::Patron::Categories;
|
|
use Koha::Account::DebitTypes;
|
|
|
|
my $input = CGI->new;
|
|
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "members/maninvoice.tt",
|
|
query => $input,
|
|
type => "intranet",
|
|
flagsrequired => {
|
|
borrowers => 'edit_borrowers',
|
|
updatecharges => 'remaining_permissions'
|
|
}
|
|
}
|
|
);
|
|
|
|
my $borrowernumber = $input->param('borrowernumber');
|
|
my $patron = Koha::Patrons->find($borrowernumber);
|
|
unless ($patron) {
|
|
print $input->redirect(
|
|
"/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
|
|
exit;
|
|
}
|
|
|
|
my $logged_in_user = Koha::Patrons->find($loggedinuser);
|
|
output_and_exit_if_error(
|
|
$input, $cookie,
|
|
$template,
|
|
{
|
|
module => 'members',
|
|
logged_in_user => $logged_in_user,
|
|
current_patron => $patron
|
|
}
|
|
);
|
|
|
|
my $library_id = C4::Context->userenv->{'branch'};
|
|
my $desc = $input->param('desc');
|
|
my $amount = $input->param('amount');
|
|
my $note = $input->param('note');
|
|
my $debit_type = $input->param('type');
|
|
my $barcode = $input->param('barcode');
|
|
$template->param(
|
|
desc => $desc,
|
|
amount => $amount,
|
|
note => $note,
|
|
type => $debit_type,
|
|
barcode => $barcode
|
|
);
|
|
|
|
my $add = $input->param('add');
|
|
if ($add) {
|
|
output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
|
|
unless Koha::Token->new->check_csrf(
|
|
{
|
|
session_id => scalar $input->cookie('CGISESSID'),
|
|
token => scalar $input->param('csrf_token'),
|
|
}
|
|
);
|
|
|
|
# Note: If the logged in user is not allowed to see this patron an invoice can be forced
|
|
# Here we are trusting librarians not to hack the system
|
|
my $desc = $input->param('desc');
|
|
my $amount = $input->param('amount');
|
|
my $note = $input->param('note');
|
|
my $debit_type = $input->param('type');
|
|
|
|
# If barcode is passed, attempt to find the associated item
|
|
my $failed;
|
|
my $item_id;
|
|
my $olditem; # FIXME: When items and deleted_items are merged, we can remove this
|
|
my $issue_id;
|
|
if ($barcode) {
|
|
my $item = Koha::Items->find( { barcode => $barcode } );
|
|
if ($item) {
|
|
$item_id = $item->itemnumber;
|
|
}
|
|
else {
|
|
$item = Koha::Old::Items->search( { barcode => $barcode },
|
|
{ order_by => { -desc => 'timestamp' }, rows => 1 } );
|
|
if ($item->count) {
|
|
$item_id = $item->next->itemnumber;
|
|
$olditem = 1;
|
|
}
|
|
else {
|
|
$template->param( error => 'itemnumber' );
|
|
$failed = 1;
|
|
}
|
|
}
|
|
|
|
if ( ( $debit_type eq 'LOST' ) && $item_id ) {
|
|
my $checkouts = Koha::Checkouts->search(
|
|
{
|
|
itemnumber => $item_id,
|
|
borrowernumber => $borrowernumber
|
|
}
|
|
);
|
|
my $checkout =
|
|
$checkouts->count
|
|
? $checkouts->next
|
|
: Koha::Old::Checkouts->search(
|
|
{
|
|
itemnumber => $item_id,
|
|
borrowernumber => $borrowernumber
|
|
},
|
|
{ order_by => { -desc => 'returndate' }, rows => 1 }
|
|
)->next;
|
|
$issue_id = $checkout ? $checkout->issue_id : undef;
|
|
}
|
|
}
|
|
|
|
unless ($failed) {
|
|
try {
|
|
$patron->account->add_debit(
|
|
{
|
|
amount => $amount,
|
|
description => $desc,
|
|
note => $note,
|
|
user_id => $logged_in_user->borrowernumber,
|
|
interface => 'intranet',
|
|
library_id => $library_id,
|
|
type => $debit_type,
|
|
( $olditem ? () : ( item_id => $item_id ) ),
|
|
issue_id => $issue_id
|
|
}
|
|
);
|
|
|
|
if ( C4::Context->preference('AccountAutoReconcile') ) {
|
|
$patron->account->reconcile_balance;
|
|
}
|
|
|
|
if ( $add eq 'save and pay' ) {
|
|
print $input->redirect(
|
|
"/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber"
|
|
);
|
|
}
|
|
else {
|
|
print $input->redirect(
|
|
"/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
|
|
);
|
|
}
|
|
|
|
exit;
|
|
}
|
|
catch {
|
|
my $error = $_;
|
|
if ( ref($error) eq 'Koha::Exceptions::Object::FKConstraint' ) {
|
|
$template->param( error => $error->broken_fk );
|
|
}
|
|
else {
|
|
$template->param( error => $error );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
my @debit_types = Koha::Account::DebitTypes->search_with_library_limits(
|
|
{ can_be_invoiced => 1, archived => 0 },
|
|
{}, $library_id );
|
|
|
|
$template->param(
|
|
debit_types => \@debit_types,
|
|
csrf_token => Koha::Token->new->generate_csrf(
|
|
{ session_id => scalar $input->cookie('CGISESSID') }
|
|
),
|
|
patron => $patron,
|
|
finesview => 1,
|
|
);
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|