X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=offline_circ%2Fprocess_koc.pl;h=8381b1bde2c8fc7af3f7b2e01f8ef66a9ab0f9a7;hb=7a33e3ba75cdfdf60e3c1403ecc542f084ffc851;hp=c4964b52151fe022ffc0310d512f3c26e9f30cc2;hpb=235a9dfb7d259b67f0c4167b56c7a0b04275046d;p=koha.git diff --git a/offline_circ/process_koc.pl b/offline_circ/process_koc.pl index c4964b5215..8381b1bde2 100755 --- a/offline_circ/process_koc.pl +++ b/offline_circ/process_koc.pl @@ -4,24 +4,24 @@ # 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 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. +# 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. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . # use strict; use warnings; -use CGI; +use CGI qw ( -utf8 ); use C4::Output; use C4::Auth; use C4::Koha; @@ -32,7 +32,7 @@ use C4::Circulation; use C4::Items; use C4::Members; use C4::Stats; -use C4::UploadedFile; +use Koha::Upload; use C4::BackgroundJob; use Date::Calc qw( Add_Delta_Days Date_to_Days ); @@ -45,7 +45,7 @@ my $FILE_VERSION = '1.0'; our $query = CGI->new; my ($template, $loggedinuser, $cookie) = get_template_and_user({ - template_name => "offline_circ/process_koc.tmpl", + template_name => "offline_circ/process_koc.tt", query => $query, type => "intranet", authnotrequired => 0, @@ -69,16 +69,16 @@ if ($completedJobID) { $template->param(transactions_loaded => 1); $template->param(messages => $results->{results}); } elsif ($fileID) { - my $uploaded_file = C4::UploadedFile->fetch($sessionID, $fileID); - my $fh = $uploaded_file->fh(); + my $upload = Koha::Upload->new->get({ id => $fileID, filehandle => 1 }); + my $fh = $upload->{fh}; + my $filename = $upload->{name}; my @input_lines = <$fh>; - my $filename = $uploaded_file->name(); my $job = undef; if ($runinbackground) { my $job_size = scalar(@input_lines); - $job = C4::BackgroundJob->new($sessionID, $filename, $ENV{'SCRIPT_NAME'}, $job_size); + $job = C4::BackgroundJob->new($sessionID, $filename, '/cgi-bin/koha/offline_circ/process_koc.pl', $job_size); my $jobID = $job->id(); # fork off @@ -104,7 +104,7 @@ if ($completedJobID) { } else { # fork failed, so exit immediately # fork failed, so exit immediately - warn "fork failed while attempting to run $ENV{'SCRIPT_NAME'} as a background job"; + warn "fork failed while attempting to run offline_circ/process_koc.pl as a background job"; exit 0; } @@ -329,7 +329,8 @@ sub kocReturnItem { $borrowernumber, $item->{'itemnumber'}, undef, - $circ->{'date'} + $circ->{'date'}, + $borrower->{'privacy'} ); ModItem({ onloan => undef }, $item->{'biblionumber'}, $item->{'itemnumber'});