cad2db6016
Test plan: Check that the following files don't contain use strict; use warnings; and have use Modern::Perl instead. background-job-progress.pl batchMod.pl copy-holidays.pl exceptionHolidays.pl holidays.pl import_borrowers.pl koha-news.pl letter.pl manage-marc-import.pl newHolidays.pl overduerules.pl quotes-upload.pl quotes.pl quotes/quotes-upload_ajax.pl quotes/quotes_ajax.pl scheduler.pl stage-marc-import.pl upload-cover-image.pl Also the credits have been added to newHolidays.pl Signed-off-by: Jon Knight <J.P.Knight@lboro.ac.uk> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
123 lines
4.7 KiB
Perl
Executable file
123 lines
4.7 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
use Modern::Perl;
|
|
|
|
use CGI qw ( -utf8 );
|
|
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use DateTime;
|
|
|
|
use C4::Calendar;
|
|
use Koha::DateUtils;
|
|
|
|
my $input = new CGI;
|
|
my $dbh = C4::Context->dbh();
|
|
|
|
my $branchcode = $input->param('showBranchName');
|
|
my $weekday = $input->param('showWeekday');
|
|
my $day = $input->param('showDay');
|
|
my $month = $input->param('showMonth');
|
|
my $year = $input->param('showYear');
|
|
my $title = $input->param('showTitle');
|
|
my $description = $input->param('showDescription');
|
|
my $holidaytype = $input->param('showHolidayType');
|
|
my $datecancelrange_dt = eval { dt_from_string( scalar $input->param('datecancelrange') ) };
|
|
my $calendardate = sprintf("%04d-%02d-%02d", $year, $month, $day);
|
|
|
|
my $calendar = C4::Calendar->new(branchcode => $branchcode);
|
|
|
|
$title || ($title = '');
|
|
if ($description) {
|
|
$description =~ s/\r/\\r/g;
|
|
$description =~ s/\n/\\n/g;
|
|
} else {
|
|
$description = '';
|
|
}
|
|
|
|
# We make an array with holiday's days
|
|
my @holiday_list;
|
|
if ($datecancelrange_dt){
|
|
my $first_dt = DateTime->new(year => $year, month => $month, day => $day);
|
|
|
|
for (my $dt = $first_dt->clone();
|
|
$dt <= $datecancelrange_dt;
|
|
$dt->add(days => 1) )
|
|
{
|
|
push @holiday_list, $dt->clone();
|
|
}
|
|
}
|
|
if ($input->param('showOperation') eq 'exception') {
|
|
$calendar->insert_exception_holiday(day => $day,
|
|
month => $month,
|
|
year => $year,
|
|
title => $title,
|
|
description => $description);
|
|
} elsif ($input->param('showOperation') eq 'exceptionrange' ) {
|
|
if (@holiday_list){
|
|
foreach my $date (@holiday_list){
|
|
$calendar->insert_exception_holiday(
|
|
day => $date->{local_c}->{day},
|
|
month => $date->{local_c}->{month},
|
|
year => $date->{local_c}->{year},
|
|
title => $title,
|
|
description => $description
|
|
);
|
|
}
|
|
}
|
|
} elsif ($input->param('showOperation') eq 'edit') {
|
|
if($holidaytype eq 'weekday') {
|
|
$calendar->ModWeekdayholiday(weekday => $weekday,
|
|
title => $title,
|
|
description => $description);
|
|
} elsif ($holidaytype eq 'daymonth') {
|
|
$calendar->ModDaymonthholiday(day => $day,
|
|
month => $month,
|
|
title => $title,
|
|
description => $description);
|
|
} elsif ($holidaytype eq 'ymd') {
|
|
$calendar->ModSingleholiday(day => $day,
|
|
month => $month,
|
|
year => $year,
|
|
title => $title,
|
|
description => $description);
|
|
} elsif ($holidaytype eq 'exception') {
|
|
$calendar->ModExceptionholiday(day => $day,
|
|
month => $month,
|
|
year => $year,
|
|
title => $title,
|
|
description => $description);
|
|
}
|
|
} elsif ($input->param('showOperation') eq 'delete') {
|
|
$calendar->delete_holiday(weekday => $weekday,
|
|
day => $day,
|
|
month => $month,
|
|
year => $year);
|
|
}elsif ($input->param('showOperation') eq 'deleterange') {
|
|
if (@holiday_list){
|
|
foreach my $date (@holiday_list){
|
|
$calendar->delete_holiday_range(weekday => $weekday,
|
|
day => $date->{local_c}->{day},
|
|
month => $date->{local_c}->{month},
|
|
year => $date->{local_c}->{year});
|
|
}
|
|
}
|
|
}elsif ($input->param('showOperation') eq 'deleterangerepeat') {
|
|
if (@holiday_list){
|
|
foreach my $date (@holiday_list){
|
|
$calendar->delete_holiday_range_repeatable(weekday => $weekday,
|
|
day => $date->{local_c}->{day},
|
|
month => $date->{local_c}->{month});
|
|
}
|
|
}
|
|
}elsif ($input->param('showOperation') eq 'deleterangerepeatexcept') {
|
|
if (@holiday_list){
|
|
foreach my $date (@holiday_list){
|
|
$calendar->delete_exception_holiday_range(weekday => $weekday,
|
|
day => $date->{local_c}->{day},
|
|
month => $date->{local_c}->{month},
|
|
year => $date->{local_c}->{year});
|
|
}
|
|
}
|
|
}
|
|
print $input->redirect("/cgi-bin/koha/tools/holidays.pl?branch=$branchcode&calendardate=$calendardate");
|