a469663d7b
- the dateformat value is send to all templates (from C4::Auth::get_template_and_user) - remove all assignment of dateformat in all .pl files - the DHTMLcalendar_dateformat variable is unused Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Fixed conflicts: - opac/sco/sco-main.pl - reports/acquisitions_stats.pl - tools/cleanborrowers.pl All tests pass, perlcritic problems appeared in some files before and after these patches were applied. Checked sorting in following pages: - acqui/addorderiso2709.tt - list of staged imports in acq - acqui/histsearch.tt - sorting of dates in acq search result list - acqui/invoices.tt - billing date in list of invoices in acq - acqui/lateorders.tt - list of late orders in acq - acqui/ordered.tt - ordered titles and estimated costs for a fund - acqui/parcels.tt - receive shipment page - acqui/spent.tt - received titles and actual costs for a fund ... - serials-search.tt - subscription search result list ... - opac/sco/sco-main.tt - due dates in list of checked out items - reports/acquisitions-stats.tt - date searches, display of dates - tools/cleanborrowers.tt - tools.holidays.tt - different views of dates library is closed, adding dates Checked dates display according to system preference everywhere and searching, entering dates etc. still worked as expected. Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
114 lines
3.1 KiB
Perl
Executable file
114 lines
3.1 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2007 Liblime Ltd
|
|
#
|
|
# 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; FIXME - Bug 2505
|
|
use C4::Context;
|
|
use C4::Scheduler;
|
|
use C4::Reports::Guided;
|
|
use C4::Auth;
|
|
use CGI;
|
|
use C4::Output;
|
|
use C4::Dates;
|
|
|
|
use vars qw($debug);
|
|
|
|
BEGIN {
|
|
$debug = $ENV{DEBUG} || 0;
|
|
}
|
|
|
|
my $input = new CGI;
|
|
|
|
my $base = C4::Context->config('intranetdir');
|
|
my $CONFIG_NAME = $ENV{'KOHA_CONF'};
|
|
|
|
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "tools/scheduler.tmpl",
|
|
query => $input,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
flagsrequired => { tools => 'schedule_tasks' },
|
|
debug => 1,
|
|
}
|
|
);
|
|
|
|
my $mode = $input->param('mode');
|
|
my $id = $input->param('id');
|
|
|
|
if ( $mode eq 'job_add' ) {
|
|
|
|
# Retrieving the date according to the dateformat syspref
|
|
my $c4date = C4::Dates->new($input->param('startdate'));
|
|
|
|
# Formatting it for Schedule::At
|
|
my $startdate = join('', (split /-/, $c4date->output("iso")));
|
|
|
|
my $starttime = $input->param('starttime');
|
|
my $recurring = $input->param('recurring');
|
|
$starttime =~ s/\://g;
|
|
my $start = $startdate . $starttime;
|
|
my $report = $input->param('report');
|
|
my $format = $input->param('format');
|
|
my $email = $input->param('email');
|
|
my $command =
|
|
"EXPORT KOHA_CONF=\"$CONFIG_NAME\"; " . $base
|
|
. "/tools/runreport.pl $report $format $email";
|
|
|
|
if ($recurring) {
|
|
my $frequency = $input->param('frequency');
|
|
add_cron_job( $start, $command );
|
|
}
|
|
else {
|
|
unless ( add_at_job( $start, $command ) ) {
|
|
$template->param( job_add_failed => 1 );
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( $mode eq 'job_change' ) {
|
|
my $jobid = $input->param('jobid');
|
|
if ( $input->param('delete') ) {
|
|
remove_at_job($jobid);
|
|
}
|
|
}
|
|
|
|
my $jobs = get_jobs();
|
|
my @jobloop;
|
|
foreach my $job ( values %$jobs ) {
|
|
push @jobloop, $job;
|
|
}
|
|
|
|
@jobloop = sort { $a->{TIME} cmp $b->{TIME} } @jobloop;
|
|
|
|
my $reports = get_saved_reports();
|
|
if ( defined $id ) {
|
|
foreach my $report (@$reports) {
|
|
$report->{'selected'} = 1 if $report->{'id'} eq $id;
|
|
}
|
|
}
|
|
|
|
$template->param( 'savedreports' => $reports );
|
|
$template->param( JOBS => \@jobloop );
|
|
my $time = localtime(time);
|
|
$template->param( 'time' => $time );
|
|
$template->param(
|
|
debug => $debug,
|
|
);
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|