Kyle M Hall
80897930b7
This patch adds a more extensible and flexible debarments system to Koha. The fields borrowers.debarred and borrowers.debarredcomment are retained for compatibility and speed. This system supports having debarments for multiple reasons. There are currently three types of debarments: OVERDUES - Generated by overdue_notices.pl if the notice should debar a patron SUSPENSION - A punative debarment generated on checkin via an issuing rule MANUAL - A debarment created manually by a librarian OVERDUE debarments are cleared automatically when all overdue items have been returned, if the new system preference AutoRemoveOverduesRestrictions is enabled. It is disabled by default to retain current default functionality. Whenever a borrowers debarments are modified, the system updates the borrowers debarment fields with the highest expiration from all the borrowers debarments, and concatenates the comments from the debarments together. Test plan: 1) Apply patch 2) Run updatedatabase.pl 3) Verify the borrower_debarments table has been created and populated with the pre-existing debarments 4) Run t/db_dependent/Borrower_Debarments.t 5) Manually debar a patron, with an expiration date 6) Verify the patron cannot be issued to 7) Add another manual debarment with a different expiration date 8) Verify the 'restricted' message lists the date farthest into the future 9) Add another manual debarment with no expiration date 10) Verify the borrower is now debarred indefinitely 11) Delete the indefinite debarment 12) Verify the debarment message lists an expiration date dagain 13) Enable the new system preference AutoRemoveOverduesRestrictions 14) Set an overdue notice to debar after 1 day of being overdue 15) Check out an item to a patron and backdate the due date to yesterday 16) Run overdue_notices.pl 17) Verify the OVERDUES debarment was created 18) Return the item 19) Verify the OVERDUES debarment was removed 20) Disable AutoRemoveOverduesRestrictions 21) Repeat steps 15 though 18, verify the OVERDUES debarment was *not* removed 22) Add issuing rules so that an overdue item causes a temporary debarment 23) Check out an item to a patron and backdate the due date by a year 24) Return the item 25) Verify the SUSPENSION debarment was added to the patron Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
785 lines
30 KiB
Perl
Executable file
785 lines
30 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# script to execute issuing of books
|
|
|
|
# Copyright 2000-2002 Katipo Communications
|
|
# copyright 2010 BibLibre
|
|
# Copyright 2011 PTFS-Europe Ltd.
|
|
# Copyright 2012 software.coop and MJ Ray
|
|
#
|
|
# 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 2 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, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
use strict;
|
|
use warnings;
|
|
use CGI;
|
|
use C4::Output;
|
|
use C4::Print;
|
|
use C4::Auth qw/:DEFAULT get_session/;
|
|
use C4::Dates qw/format_date/;
|
|
use C4::Branch; # GetBranches
|
|
use C4::Koha; # GetPrinter
|
|
use C4::Circulation;
|
|
use C4::Members;
|
|
use C4::Biblio;
|
|
use C4::Search;
|
|
use MARC::Record;
|
|
use C4::Reserves;
|
|
use C4::Context;
|
|
use CGI::Session;
|
|
use C4::Members::Attributes qw(GetBorrowerAttributes);
|
|
use Koha::Borrower::Debarments qw(GetDebarments);
|
|
use Koha::DateUtils;
|
|
|
|
use Date::Calc qw(
|
|
Today
|
|
Add_Delta_YM
|
|
Add_Delta_Days
|
|
Date_to_Days
|
|
);
|
|
use List::MoreUtils qw/uniq/;
|
|
|
|
|
|
#
|
|
# PARAMETERS READING
|
|
#
|
|
my $query = new CGI;
|
|
|
|
my $sessionID = $query->cookie("CGISESSID") ;
|
|
my $session = get_session($sessionID);
|
|
|
|
# branch and printer are now defined by the userenv
|
|
# but first we have to check if someone has tried to change them
|
|
|
|
my $branch = $query->param('branch');
|
|
if ($branch){
|
|
# update our session so the userenv is updated
|
|
$session->param('branch', $branch);
|
|
$session->param('branchname', GetBranchName($branch));
|
|
}
|
|
|
|
my $printer = $query->param('printer');
|
|
if ($printer){
|
|
# update our session so the userenv is updated
|
|
$session->param('branchprinter', $printer);
|
|
}
|
|
|
|
if (!C4::Context->userenv && !$branch){
|
|
if ($session->param('branch') eq 'NO_LIBRARY_SET'){
|
|
# no branch set we can't issue
|
|
print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
|
|
{
|
|
template_name => 'circ/circulation.tmpl',
|
|
query => $query,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
flagsrequired => { circulate => 'circulate_remaining_permissions' },
|
|
}
|
|
);
|
|
|
|
my $branches = GetBranches();
|
|
|
|
my @failedrenews = $query->param('failedrenew'); # expected to be itemnumbers
|
|
our %renew_failed = ();
|
|
for (@failedrenews) { $renew_failed{$_} = 1; }
|
|
|
|
my @failedreturns = $query->param('failedreturn');
|
|
our %return_failed = ();
|
|
for (@failedreturns) { $return_failed{$_} = 1; }
|
|
|
|
my $findborrower = $query->param('findborrower') || q{};
|
|
$findborrower =~ s|,| |g;
|
|
my $borrowernumber = $query->param('borrowernumber');
|
|
|
|
$branch = C4::Context->userenv->{'branch'};
|
|
$printer = C4::Context->userenv->{'branchprinter'};
|
|
|
|
|
|
# If AutoLocation is not activated, we show the Circulation Parameters to chage settings of librarian
|
|
if (C4::Context->preference("AutoLocation") != 1) {
|
|
$template->param(ManualLocation => 1);
|
|
}
|
|
|
|
if (C4::Context->preference("DisplayClearScreenButton")) {
|
|
$template->param(DisplayClearScreenButton => 1);
|
|
}
|
|
|
|
if (C4::Context->preference("UseTablesortForCirc")) {
|
|
$template->param(UseTablesortForCirc => 1);
|
|
}
|
|
|
|
my $barcode = $query->param('barcode') || q{};
|
|
$barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
|
|
|
|
$barcode = barcodedecode($barcode) if( $barcode && C4::Context->preference('itemBarcodeInputFilter'));
|
|
my $stickyduedate = $query->param('stickyduedate') || $session->param('stickyduedate');
|
|
my $duedatespec = $query->param('duedatespec') || $session->param('stickyduedate');
|
|
my $issueconfirmed = $query->param('issueconfirmed');
|
|
my $cancelreserve = $query->param('cancelreserve');
|
|
my $organisation = $query->param('organisations');
|
|
my $print = $query->param('print') || q{};
|
|
my $debt_confirmed = $query->param('debt_confirmed') || 0; # Don't show the debt error dialog twice
|
|
my $charges = $query->param('charges') || q{};
|
|
|
|
# Check if stickyduedate is turned off
|
|
if ( $barcode ) {
|
|
# was stickyduedate loaded from session?
|
|
if ( $stickyduedate && ! $query->param("stickyduedate") ) {
|
|
$session->clear( 'stickyduedate' );
|
|
$stickyduedate = $query->param('stickyduedate');
|
|
$duedatespec = $query->param('duedatespec');
|
|
}
|
|
}
|
|
|
|
my ($datedue,$invalidduedate);
|
|
|
|
my $duedatespec_allow = C4::Context->preference('SpecifyDueDate');
|
|
if($duedatespec_allow){
|
|
if ($duedatespec) {
|
|
if ($duedatespec =~ C4::Dates->regexp('syspref')) {
|
|
$datedue = dt_from_string($duedatespec);
|
|
} else {
|
|
$invalidduedate = 1;
|
|
$template->param(IMPOSSIBLE=>1, INVALID_DATE=>$duedatespec);
|
|
}
|
|
}
|
|
}
|
|
|
|
our $todaysdate = C4::Dates->new->output('iso');
|
|
|
|
# check and see if we should print
|
|
if ( $barcode eq '' && $print eq 'maybe' ) {
|
|
$print = 'yes';
|
|
}
|
|
|
|
my $inprocess = ($barcode eq '') ? '' : $query->param('inprocess');
|
|
if ( $barcode eq '' && $charges eq 'yes' ) {
|
|
$template->param(
|
|
PAYCHARGES => 'yes',
|
|
borrowernumber => $borrowernumber
|
|
);
|
|
}
|
|
|
|
if ( $print eq 'yes' && $borrowernumber ne '' ) {
|
|
if ( C4::Context->boolean_preference('printcirculationslips') ) {
|
|
my $letter = IssueSlip($branch, $borrowernumber, "QUICK");
|
|
NetworkPrint($letter->{content});
|
|
}
|
|
$query->param( 'borrowernumber', '' );
|
|
$borrowernumber = '';
|
|
}
|
|
|
|
#
|
|
# STEP 2 : FIND BORROWER
|
|
# if there is a list of find borrowers....
|
|
#
|
|
my $borrowerslist;
|
|
my $message;
|
|
if ($findborrower) {
|
|
my $borrowers = Search($findborrower, 'cardnumber') || [];
|
|
if (C4::Context->preference("AddPatronLists")) {
|
|
$template->param(
|
|
"AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
|
|
);
|
|
if (C4::Context->preference("AddPatronLists")=~/code/){
|
|
my $categories = GetBorrowercategoryList;
|
|
$categories->[0]->{'first'} = 1;
|
|
$template->param(categories=>$categories);
|
|
}
|
|
}
|
|
if ( @$borrowers == 0 ) {
|
|
$query->param( 'findborrower', '' );
|
|
$message = "'$findborrower'";
|
|
}
|
|
elsif ( @$borrowers == 1 ) {
|
|
$borrowernumber = $borrowers->[0]->{'borrowernumber'};
|
|
$query->param( 'borrowernumber', $borrowernumber );
|
|
$query->param( 'barcode', '' );
|
|
}
|
|
else {
|
|
$borrowerslist = $borrowers;
|
|
}
|
|
}
|
|
|
|
# get the borrower information.....
|
|
my $borrower;
|
|
if ($borrowernumber) {
|
|
$borrower = GetMemberDetails( $borrowernumber, 0 );
|
|
my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
|
|
|
|
# Warningdate is the date that the warning starts appearing
|
|
my ( $today_year, $today_month, $today_day) = Today();
|
|
my ($warning_year, $warning_month, $warning_day) = split /-/, $borrower->{'dateexpiry'};
|
|
my ( $enrol_year, $enrol_month, $enrol_day) = split /-/, $borrower->{'dateenrolled'};
|
|
# Renew day is calculated by adding the enrolment period to today
|
|
my ( $renew_year, $renew_month, $renew_day);
|
|
if ($enrol_year*$enrol_month*$enrol_day>0) {
|
|
( $renew_year, $renew_month, $renew_day) =
|
|
Add_Delta_YM( $enrol_year, $enrol_month, $enrol_day,
|
|
0 , $borrower->{'enrolmentperiod'});
|
|
}
|
|
# if the expiry date is before today ie they have expired
|
|
if ( !$borrower->{'dateexpiry'} || $warning_year*$warning_month*$warning_day==0
|
|
|| Date_to_Days($today_year, $today_month, $today_day )
|
|
> Date_to_Days($warning_year, $warning_month, $warning_day) )
|
|
{
|
|
#borrowercard expired, no issues
|
|
$template->param(
|
|
flagged => "1",
|
|
noissues => "1",
|
|
expired => "1",
|
|
renewaldate => format_date("$renew_year-$renew_month-$renew_day")
|
|
);
|
|
}
|
|
# check for NotifyBorrowerDeparture
|
|
elsif ( C4::Context->preference('NotifyBorrowerDeparture') &&
|
|
Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,- C4::Context->preference('NotifyBorrowerDeparture'))) <
|
|
Date_to_Days( $today_year, $today_month, $today_day ) )
|
|
{
|
|
# borrower card soon to expire warn librarian
|
|
$template->param("warndeparture" => format_date($borrower->{dateexpiry}),
|
|
flagged => "1",);
|
|
if (C4::Context->preference('ReturnBeforeExpiry')){
|
|
$template->param("returnbeforeexpiry" => 1);
|
|
}
|
|
}
|
|
$template->param(
|
|
overduecount => $od,
|
|
issuecount => $issue,
|
|
finetotal => $fines
|
|
);
|
|
|
|
$template->param(
|
|
'userdebarred' => $borrower->{debarred},
|
|
'debarredcomment' => $borrower->{debarredcomment},
|
|
);
|
|
if ( $borrower->{debarred} ne "9999-12-31" ) {
|
|
$template->param( 'userdebarreddate' => C4::Dates::format_date( $borrower->{debarred} ) );
|
|
}
|
|
|
|
}
|
|
|
|
#
|
|
# STEP 3 : ISSUING
|
|
#
|
|
#
|
|
if ($barcode) {
|
|
# always check for blockers on issuing
|
|
my ( $error, $question, $alerts ) =
|
|
CanBookBeIssued( $borrower, $barcode, $datedue , $inprocess );
|
|
my $blocker = $invalidduedate ? 1 : 0;
|
|
|
|
$template->param( alert => $alerts );
|
|
|
|
# Get the item title for more information
|
|
my $getmessageiteminfo = GetBiblioFromItemNumber(undef,$barcode);
|
|
$template->param(
|
|
authvalcode_notforloan => C4::Koha::GetAuthValCode('items.notforloan', $getmessageiteminfo->{'frameworkcode'}),
|
|
);
|
|
# Fix for bug 7494: optional checkout-time fallback search for a book
|
|
|
|
if ( $error->{'UNKNOWN_BARCODE'}
|
|
&& C4::Context->preference("itemBarcodeFallbackSearch") )
|
|
{
|
|
$template->param( FALLBACK => 1 );
|
|
|
|
my $query = "kw=" . $barcode;
|
|
my ( $searcherror, $results, $total_hits ) = SimpleSearch($query);
|
|
|
|
# if multiple hits, offer options to librarian
|
|
if ( $total_hits > 0 ) {
|
|
my @options = ();
|
|
foreach my $hit ( @{$results} ) {
|
|
my $chosen =
|
|
TransformMarcToKoha( C4::Context->dbh,
|
|
MARC::Record->new_from_usmarc($hit) );
|
|
|
|
# offer all barcodes individually
|
|
foreach my $barcode ( sort split(/\s*\|\s*/, $chosen->{barcode}) ) {
|
|
my %chosen_single = %{$chosen};
|
|
$chosen_single{barcode} = $barcode;
|
|
push( @options, \%chosen_single );
|
|
}
|
|
}
|
|
$template->param( options => \@options );
|
|
}
|
|
}
|
|
|
|
delete $question->{'DEBT'} if ($debt_confirmed);
|
|
foreach my $impossible ( keys %$error ) {
|
|
$template->param(
|
|
$impossible => $$error{$impossible},
|
|
IMPOSSIBLE => 1
|
|
);
|
|
$blocker = 1;
|
|
}
|
|
if( !$blocker ){
|
|
my $confirm_required = 0;
|
|
unless($issueconfirmed){
|
|
# Get the item title for more information
|
|
my $getmessageiteminfo = GetBiblioFromItemNumber(undef,$barcode);
|
|
$template->{VARS}->{'additional_materials'} = $getmessageiteminfo->{'materials'};
|
|
$template->param( itemhomebranch => $getmessageiteminfo->{'homebranch'} );
|
|
|
|
# pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed.
|
|
foreach my $needsconfirmation ( keys %$question ) {
|
|
$template->param(
|
|
$needsconfirmation => $$question{$needsconfirmation},
|
|
getTitleMessageIteminfo => $getmessageiteminfo->{'title'},
|
|
getBarcodeMessageIteminfo => $getmessageiteminfo->{'barcode'},
|
|
NEEDSCONFIRMATION => 1
|
|
);
|
|
$confirm_required = 1;
|
|
}
|
|
}
|
|
unless($confirm_required) {
|
|
AddIssue( $borrower, $barcode, $datedue, $cancelreserve );
|
|
$inprocess = 1;
|
|
}
|
|
}
|
|
|
|
# FIXME If the issue is confirmed, we launch another time GetMemberIssuesAndFines, now display the issue count after issue
|
|
my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber );
|
|
$template->param( issuecount => $issue );
|
|
}
|
|
|
|
# reload the borrower info for the sake of reseting the flags.....
|
|
if ($borrowernumber) {
|
|
$borrower = GetMemberDetails( $borrowernumber, 0 );
|
|
}
|
|
|
|
##################################################################################
|
|
# BUILD HTML
|
|
# show all reserves of this borrower, and the position of the reservation ....
|
|
if ($borrowernumber) {
|
|
|
|
# new op dev
|
|
# now we show the status of the borrower's reservations
|
|
my @borrowerreserv = GetReservesFromBorrowernumber($borrowernumber );
|
|
my @reservloop;
|
|
my @WaitingReserveLoop;
|
|
|
|
foreach my $num_res (@borrowerreserv) {
|
|
my %getreserv;
|
|
my %getWaitingReserveInfo;
|
|
my $getiteminfo = GetBiblioFromItemNumber( $num_res->{'itemnumber'} );
|
|
my $itemtypeinfo = getitemtypeinfo( (C4::Context->preference('item-level_itypes')) ? $getiteminfo->{'itype'} : $getiteminfo->{'itemtype'} );
|
|
my ( $transfertwhen, $transfertfrom, $transfertto ) =
|
|
GetTransfers( $num_res->{'itemnumber'} );
|
|
|
|
$getreserv{waiting} = 0;
|
|
$getreserv{transfered} = 0;
|
|
$getreserv{nottransfered} = 0;
|
|
|
|
$getreserv{reservedate} = format_date( $num_res->{'reservedate'} );
|
|
$getreserv{reserve_id} = $num_res->{'reserve_id'};
|
|
$getreserv{title} = $getiteminfo->{'title'};
|
|
$getreserv{subtitle} = GetRecordValue('subtitle', GetMarcBiblio($getiteminfo->{biblionumber}), GetFrameworkCode($getiteminfo->{biblionumber}));
|
|
$getreserv{itemtype} = $itemtypeinfo->{'description'};
|
|
$getreserv{author} = $getiteminfo->{'author'};
|
|
$getreserv{barcodereserv} = $getiteminfo->{'barcode'};
|
|
$getreserv{itemcallnumber} = $getiteminfo->{'itemcallnumber'};
|
|
$getreserv{biblionumber} = $getiteminfo->{'biblionumber'};
|
|
$getreserv{waitingat} = GetBranchName( $num_res->{'branchcode'} );
|
|
$getreserv{suspend} = $num_res->{'suspend'};
|
|
$getreserv{suspend_until} = $num_res->{'suspend_until'};
|
|
# check if we have a waiting status for reservations
|
|
if ( $num_res->{'found'} && $num_res->{'found'} eq 'W' ) {
|
|
$getreserv{color} = 'reserved';
|
|
$getreserv{waiting} = 1;
|
|
# genarate information displaying only waiting reserves
|
|
$getWaitingReserveInfo{title} = $getiteminfo->{'title'};
|
|
$getWaitingReserveInfo{biblionumber} = $getiteminfo->{'biblionumber'};
|
|
$getWaitingReserveInfo{itemtype} = $itemtypeinfo->{'description'};
|
|
$getWaitingReserveInfo{author} = $getiteminfo->{'author'};
|
|
$getWaitingReserveInfo{itemcallnumber} = $getiteminfo->{'itemcallnumber'};
|
|
$getWaitingReserveInfo{reservedate} = format_date( $num_res->{'reservedate'} );
|
|
$getWaitingReserveInfo{waitingat} = GetBranchName( $num_res->{'branchcode'} );
|
|
$getWaitingReserveInfo{waitinghere} = 1 if $num_res->{'branchcode'} eq $branch;
|
|
}
|
|
# check transfers with the itemnumber foud in th reservation loop
|
|
if ($transfertwhen) {
|
|
$getreserv{color} = 'transfered';
|
|
$getreserv{transfered} = 1;
|
|
$getreserv{datesent} = format_date($transfertwhen);
|
|
$getreserv{frombranch} = GetBranchName($transfertfrom);
|
|
} elsif ($getiteminfo->{'holdingbranch'} ne $num_res->{'branchcode'}) {
|
|
$getreserv{nottransfered} = 1;
|
|
$getreserv{nottransferedby} = GetBranchName( $getiteminfo->{'holdingbranch'} );
|
|
}
|
|
|
|
# if we don't have a reserv on item, we put the biblio infos and the waiting position
|
|
if ( $getiteminfo->{'title'} eq '' ) {
|
|
my $getbibinfo = GetBiblioData( $num_res->{'biblionumber'} );
|
|
|
|
$getreserv{color} = 'inwait';
|
|
$getreserv{title} = $getbibinfo->{'title'};
|
|
$getreserv{subtitle} = GetRecordValue('subtitle', GetMarcBiblio($num_res->{biblionumber}), GetFrameworkCode($num_res->{biblionumber}));
|
|
$getreserv{nottransfered} = 0;
|
|
$getreserv{itemtype} = $itemtypeinfo->{'description'};
|
|
$getreserv{author} = $getbibinfo->{'author'};
|
|
$getreserv{biblionumber} = $num_res->{'biblionumber'};
|
|
}
|
|
$getreserv{waitingposition} = $num_res->{'priority'};
|
|
$getreserv{expirationdate} = $num_res->{'expirationdate'};
|
|
push( @reservloop, \%getreserv );
|
|
|
|
# if we have a reserve waiting, initiate waitingreserveloop
|
|
if ($getreserv{waiting} == 1) {
|
|
push (@WaitingReserveLoop, \%getWaitingReserveInfo)
|
|
}
|
|
|
|
}
|
|
|
|
# return result to the template
|
|
$template->param(
|
|
countreserv => scalar @reservloop,
|
|
reservloop => \@reservloop ,
|
|
WaitingReserveLoop => \@WaitingReserveLoop,
|
|
);
|
|
$template->param( adultborrower => 1 ) if ( $borrower->{'category_type'} eq 'A' );
|
|
}
|
|
|
|
# make the issued books table.
|
|
my $todaysissues = '';
|
|
my $previssues = '';
|
|
our @todaysissues = ();
|
|
our @previousissues = ();
|
|
our @relissues = ();
|
|
our @relprevissues = ();
|
|
my $displayrelissues;
|
|
|
|
our $totalprice = 0;
|
|
|
|
sub build_issue_data {
|
|
my $issueslist = shift;
|
|
my $relatives = shift;
|
|
|
|
# split in 2 arrays for today & previous
|
|
foreach my $it ( @$issueslist ) {
|
|
my $itemtypeinfo = getitemtypeinfo( (C4::Context->preference('item-level_itypes')) ? $it->{'itype'} : $it->{'itemtype'} );
|
|
|
|
# set itemtype per item-level_itype syspref - FIXME this is an ugly hack
|
|
$it->{'itemtype'} = ( C4::Context->preference( 'item-level_itypes' ) ) ? $it->{'itype'} : $it->{'itemtype'};
|
|
|
|
($it->{'charge'}, $it->{'itemtype_charge'}) = GetIssuingCharges(
|
|
$it->{'itemnumber'}, $it->{'borrowernumber'}
|
|
);
|
|
$it->{'charge'} = sprintf("%.2f", $it->{'charge'});
|
|
my ($can_renew, $can_renew_error) = CanBookBeRenewed(
|
|
$it->{'borrowernumber'},$it->{'itemnumber'}
|
|
);
|
|
$it->{"renew_error_${can_renew_error}"} = 1 if defined $can_renew_error;
|
|
my $restype = C4::Reserves::GetReserveStatus( $it->{'itemnumber'} );
|
|
$it->{'can_renew'} = $can_renew;
|
|
$it->{'can_confirm'} = !$can_renew && !$restype;
|
|
$it->{'renew_error'} = ( $restype eq "Waiting" or $restype eq "Reserved" ) ? 1 : 0;
|
|
$it->{'checkoutdate'} = C4::Dates->new($it->{'issuedate'},'iso')->output('syspref');
|
|
$it->{'issuingbranchname'} = GetBranchName($it->{'branchcode'});
|
|
|
|
$totalprice += $it->{'replacementprice'} || 0;
|
|
$it->{'itemtype'} = $itemtypeinfo->{'description'};
|
|
$it->{'itemtype_image'} = $itemtypeinfo->{'imageurl'};
|
|
$it->{'dd_sort'} = $it->{'date_due'};
|
|
$it->{'dd'} = output_pref($it->{'date_due'});
|
|
$it->{'displaydate_sort'} = $it->{'issuedate'};
|
|
$it->{'displaydate'} = output_pref($it->{'issuedate'});
|
|
#$it->{'od'} = ( $it->{'date_due'} lt $todaysdate ) ? 1 : 0 ;
|
|
$it->{'od'} = $it->{'overdue'};
|
|
$it->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($it->{biblionumber}), GetFrameworkCode($it->{biblionumber}));
|
|
$it->{'renew_failed'} = $renew_failed{$it->{'itemnumber'}};
|
|
$it->{'return_failed'} = $return_failed{$it->{'barcode'}};
|
|
|
|
if ( ( $it->{'issuedate'} && $it->{'issuedate'} gt $todaysdate )
|
|
|| ( $it->{'lastreneweddate'} && $it->{'lastreneweddate'} gt $todaysdate ) ) {
|
|
(!$relatives) ? push @todaysissues, $it : push @relissues, $it;
|
|
} else {
|
|
(!$relatives) ? push @previousissues, $it : push @relprevissues, $it;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($borrower) {
|
|
|
|
# Getting borrower relatives
|
|
my @relborrowernumbers = GetMemberRelatives($borrower->{'borrowernumber'});
|
|
#push @borrowernumbers, $borrower->{'borrowernumber'};
|
|
|
|
# get each issue of the borrower & separate them in todayissues & previous issues
|
|
my $issueslist = GetPendingIssues($borrower->{'borrowernumber'});
|
|
my $relissueslist = [];
|
|
if ( @relborrowernumbers ) {
|
|
$relissueslist = GetPendingIssues(@relborrowernumbers);
|
|
}
|
|
|
|
build_issue_data($issueslist, 0);
|
|
build_issue_data($relissueslist, 1);
|
|
|
|
$displayrelissues = scalar($relissueslist);
|
|
|
|
if ( C4::Context->preference( "todaysIssuesDefaultSortOrder" ) eq 'asc' ) {
|
|
@todaysissues = sort { $a->{'timestamp'} cmp $b->{'timestamp'} } @todaysissues;
|
|
}
|
|
else {
|
|
@todaysissues = sort { $b->{'timestamp'} cmp $a->{'timestamp'} } @todaysissues;
|
|
}
|
|
|
|
if ( C4::Context->preference( "previousIssuesDefaultSortOrder" ) eq 'asc' ){
|
|
@previousissues = sort { $a->{'date_due'} cmp $b->{'date_due'} } @previousissues;
|
|
}
|
|
else {
|
|
@previousissues = sort { $b->{'date_due'} cmp $a->{'date_due'} } @previousissues;
|
|
}
|
|
}
|
|
|
|
|
|
my @values;
|
|
my %labels;
|
|
my $CGIselectborrower;
|
|
if ($borrowerslist) {
|
|
foreach (
|
|
sort {(lc $a->{'surname'} cmp lc $b->{'surname'} || lc $a->{'firstname'} cmp lc $b->{'firstname'})
|
|
} @$borrowerslist
|
|
)
|
|
{
|
|
push @values, $_->{'borrowernumber'};
|
|
$labels{ $_->{'borrowernumber'} } =
|
|
"$_->{'surname'}, $_->{'firstname'} ... ($_->{'cardnumber'} - $_->{'categorycode'} - $_->{'branchcode'}) ... $_->{'address'} ";
|
|
}
|
|
$CGIselectborrower = CGI::scrolling_list(
|
|
-name => 'borrowernumber',
|
|
-class => 'focus',
|
|
-id => 'borrowernumber',
|
|
-values => \@values,
|
|
-labels => \%labels,
|
|
-ondblclick => 'document.forms[\'mainform\'].submit()',
|
|
-size => 7,
|
|
-tabindex => '',
|
|
-multiple => 0
|
|
);
|
|
}
|
|
|
|
#title
|
|
my $flags = $borrower->{'flags'};
|
|
foreach my $flag ( sort keys %$flags ) {
|
|
$template->param( flagged=> 1);
|
|
$flags->{$flag}->{'message'} =~ s#\n#<br />#g;
|
|
if ( $flags->{$flag}->{'noissues'} ) {
|
|
$template->param(
|
|
noissues => 'true',
|
|
);
|
|
if ( $flag eq 'GNA' ) {
|
|
$template->param( gna => 'true' );
|
|
}
|
|
elsif ( $flag eq 'LOST' ) {
|
|
$template->param( lost => 'true' );
|
|
}
|
|
elsif ( $flag eq 'DBARRED' ) {
|
|
$template->param( dbarred => 'true' );
|
|
}
|
|
elsif ( $flag eq 'CHARGES' ) {
|
|
$template->param(
|
|
charges => 'true',
|
|
chargesmsg => $flags->{'CHARGES'}->{'message'},
|
|
chargesamount => $flags->{'CHARGES'}->{'amount'},
|
|
charges_is_blocker => 1
|
|
);
|
|
}
|
|
elsif ( $flag eq 'CREDITS' ) {
|
|
$template->param(
|
|
credits => 'true',
|
|
creditsmsg => $flags->{'CREDITS'}->{'message'},
|
|
creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
|
|
);
|
|
}
|
|
}
|
|
else {
|
|
if ( $flag eq 'CHARGES' ) {
|
|
$template->param(
|
|
charges => 'true',
|
|
chargesmsg => $flags->{'CHARGES'}->{'message'},
|
|
chargesamount => $flags->{'CHARGES'}->{'amount'},
|
|
);
|
|
}
|
|
elsif ( $flag eq 'CREDITS' ) {
|
|
$template->param(
|
|
credits => 'true',
|
|
creditsmsg => $flags->{'CREDITS'}->{'message'},
|
|
creditsamount => sprintf("%.02f", -($flags->{'CREDITS'}->{'amount'})), # from patron's pov
|
|
);
|
|
}
|
|
elsif ( $flag eq 'ODUES' ) {
|
|
$template->param(
|
|
odues => 'true',
|
|
oduesmsg => $flags->{'ODUES'}->{'message'}
|
|
);
|
|
|
|
my $items = $flags->{$flag}->{'itemlist'};
|
|
if ( ! $query->param('module') || $query->param('module') ne 'returns' ) {
|
|
$template->param( nonreturns => 'true' );
|
|
}
|
|
}
|
|
elsif ( $flag eq 'NOTES' ) {
|
|
$template->param(
|
|
notes => 'true',
|
|
notesmsg => $flags->{'NOTES'}->{'message'}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
my $amountold = $borrower->{flags}->{'CHARGES'}->{'message'} || 0;
|
|
$amountold =~ s/^.*\$//; # remove upto the $, if any
|
|
|
|
my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
|
|
|
|
if ( $borrower->{'category_type'} eq 'C') {
|
|
my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
|
|
my $cnt = scalar(@$catcodes);
|
|
$template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
|
|
$template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
|
|
}
|
|
|
|
my $CGIorganisations;
|
|
my $member_of_institution;
|
|
if ( C4::Context->preference("memberofinstitution") ) {
|
|
my $organisations = get_institutions();
|
|
my @orgs;
|
|
my %org_labels;
|
|
foreach my $organisation ( keys %$organisations ) {
|
|
push @orgs, $organisation;
|
|
$org_labels{$organisation} = $organisations->{$organisation}->{'surname'};
|
|
}
|
|
$member_of_institution = 1;
|
|
$CGIorganisations = CGI::popup_menu(
|
|
-id => 'organisations',
|
|
-name => 'organisations',
|
|
-labels => \%org_labels,
|
|
-values => \@orgs,
|
|
);
|
|
}
|
|
|
|
my $lib_messages_loop = GetMessages( $borrowernumber, 'L', $branch );
|
|
if($lib_messages_loop){ $template->param(flagged => 1 ); }
|
|
|
|
my $bor_messages_loop = GetMessages( $borrowernumber, 'B', $branch );
|
|
if($bor_messages_loop){ $template->param(flagged => 1 ); }
|
|
|
|
# Computes full borrower address
|
|
my @fulladdress;
|
|
push @fulladdress, $borrower->{'streetnumber'} if ( $borrower->{'streetnumber'} );
|
|
push @fulladdress, &GetRoadTypeDetails( $borrower->{'streettype'} ) if ( $borrower->{'streettype'} );
|
|
push @fulladdress, $borrower->{'address'} if ( $borrower->{'address'} );
|
|
|
|
my $fast_cataloging = 0;
|
|
if (defined getframeworkinfo('FA')) {
|
|
$fast_cataloging = 1
|
|
}
|
|
|
|
if (C4::Context->preference('ExtendedPatronAttributes')) {
|
|
my $attributes = GetBorrowerAttributes($borrowernumber);
|
|
$template->param(
|
|
ExtendedPatronAttributes => 1,
|
|
extendedattributes => $attributes
|
|
);
|
|
}
|
|
|
|
$template->param(
|
|
lib_messages_loop => $lib_messages_loop,
|
|
bor_messages_loop => $bor_messages_loop,
|
|
all_messages_del => C4::Context->preference('AllowAllMessageDeletion'),
|
|
findborrower => $findborrower,
|
|
borrower => $borrower,
|
|
borrowernumber => $borrowernumber,
|
|
branch => $branch,
|
|
branchname => GetBranchName($borrower->{'branchcode'}),
|
|
printer => $printer,
|
|
printername => $printer,
|
|
firstname => $borrower->{'firstname'},
|
|
surname => $borrower->{'surname'},
|
|
showname => $borrower->{'showname'},
|
|
category_type => $borrower->{'category_type'},
|
|
was_renewed => $query->param('was_renewed') ? 1 : 0,
|
|
expiry => format_date($borrower->{'dateexpiry'}),
|
|
categorycode => $borrower->{'categorycode'},
|
|
categoryname => $borrower->{description},
|
|
address => join(' ', @fulladdress),
|
|
address2 => $borrower->{'address2'},
|
|
email => $borrower->{'email'},
|
|
emailpro => $borrower->{'emailpro'},
|
|
borrowernotes => $borrower->{'borrowernotes'},
|
|
city => $borrower->{'city'},
|
|
state => $borrower->{'state'},
|
|
zipcode => $borrower->{'zipcode'},
|
|
country => $borrower->{'country'},
|
|
phone => $borrower->{'phone'} || $borrower->{'mobile'},
|
|
cardnumber => $borrower->{'cardnumber'},
|
|
othernames => $borrower->{'othernames'},
|
|
amountold => $amountold,
|
|
barcode => $barcode,
|
|
stickyduedate => $stickyduedate,
|
|
duedatespec => $duedatespec,
|
|
message => $message,
|
|
CGIselectborrower => $CGIselectborrower,
|
|
totalprice => sprintf('%.2f', $totalprice),
|
|
totaldue => sprintf('%.2f', $total),
|
|
todayissues => \@todaysissues,
|
|
previssues => \@previousissues,
|
|
relissues => \@relissues,
|
|
relprevissues => \@relprevissues,
|
|
displayrelissues => $displayrelissues,
|
|
inprocess => $inprocess,
|
|
memberofinstution => $member_of_institution,
|
|
CGIorganisations => $CGIorganisations,
|
|
is_child => ($borrower->{'category_type'} eq 'C'),
|
|
circview => 1,
|
|
soundon => C4::Context->preference("SoundOn"),
|
|
fast_cataloging => $fast_cataloging,
|
|
CircAutoPrintQuickSlip => C4::Context->preference("CircAutoPrintQuickSlip"),
|
|
activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
|
|
SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
|
|
AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
|
|
RoutingSerials => C4::Context->preference('RoutingSerials'),
|
|
);
|
|
|
|
# save stickyduedate to session
|
|
if ($stickyduedate) {
|
|
$session->param( 'stickyduedate', $duedatespec );
|
|
}
|
|
|
|
my ($picture, $dberror) = GetPatronImage($borrower->{'borrowernumber'});
|
|
$template->param( picture => 1 ) if $picture;
|
|
|
|
# get authorised values with type of BOR_NOTES
|
|
|
|
my $canned_notes = GetAuthorisedValues("BOR_NOTES");
|
|
|
|
$template->param(
|
|
debt_confirmed => $debt_confirmed,
|
|
SpecifyDueDate => $duedatespec_allow,
|
|
CircAutocompl => C4::Context->preference("CircAutocompl"),
|
|
AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"),
|
|
export_remove_fields => C4::Context->preference("ExportRemoveFields"),
|
|
export_with_csv_profile => C4::Context->preference("ExportWithCsvProfile"),
|
|
canned_bor_notes_loop => $canned_notes,
|
|
debarments => GetDebarments({ borrowernumber => $borrowernumber }),
|
|
);
|
|
|
|
output_html_with_http_headers $query, $cookie, $template->output;
|