X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=tools%2Fholidays.pl;h=a6afcaa20c32adee7486a3e12caf35fe89cbe5d4;hb=78fa5f9e60f465f1e5861bacd19c7503616b4913;hp=7c79cf9fbe15fb9fb01519899c5606dbab206792;hpb=3dda0fa639acd4ea30e0523c68bd2703941b317f;p=koha.git diff --git a/tools/holidays.pl b/tools/holidays.pl index 7c79cf9fbe..a6afcaa20c 100755 --- a/tools/holidays.pl +++ b/tools/holidays.pl @@ -17,20 +17,18 @@ #####Sets holiday periods for each branch. Datedues will be extended if branch is closed -TG use strict; +use warnings; + use CGI; use C4::Auth; use C4::Output; - +use C4::Branch; # GetBranches use C4::Calendar; my $input = new CGI; -my $branch=C4::Context->preference('defaultbranch') || $input->param('branch'); - - - my $dbh = C4::Context->dbh(); # Get the template to use my ($template, $loggedinuser, $cookie) @@ -38,38 +36,48 @@ my ($template, $loggedinuser, $cookie) type => "intranet", query => $input, authnotrequired => 0, - flagsrequired => {tools => 1}, + flagsrequired => {tools => 'edit_calendar'}, debug => 1, }); -# Set all the branches. -my $branches = $dbh->prepare("select branchcode, branchname from branches"); -$branches->execute; -# It creates a list of branches -my %list; -while (my ($branchcode, $branchname) = $branches->fetchrow) { - $list{$branchcode} = $branchname; +# keydate - date passed to calendar.js. calendar.js does not process dashes within a date. +my $keydate; +# calendardate - date passed in url for human readability (syspref) +my $calendardate; +my $today = C4::Dates->new(); +my $calendarinput = C4::Dates->new($input->param('calendardate')) || $today; +# if the url has an invalid date default to 'now.' +unless($calendardate = $calendarinput->output('syspref')) { + $calendardate = $today->output('syspref'); } -my @listValues = keys(%list); -if (!defined($branch)) { - $branch =$listValues[4]; +unless($keydate = $calendarinput->output('iso')) { + $keydate = $today->output('iso'); } -my $branchesList = CGI::scrolling_list(-name => 'branch', - -values => \@listValues, - -labels => \%list, - -size => 1, - -default => [$branch], - -multiple => 0, - -id => "branch", - -onChange => "changeBranch()"); - -$branches->finish; - -if ( C4::Context->preference("IndependantBranches") ) { +$keydate =~ s/-/\//g; + +my $branch= $input->param('branch') || C4::Context->userenv->{'branch'}; +# Set all the branches. +my $onlymine=(C4::Context->preference('IndependantBranches') && + C4::Context->userenv && + C4::Context->userenv->{flags} % 2 !=1 && + C4::Context->userenv->{branch}?1:0); +if ( $onlymine ) { $branch = C4::Context->userenv->{'branch'}; } +my $branches = GetBranches($onlymine); +my @branchloop; +for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) { + my $selected = 1 if $thisbranch eq $branch; + my %row =(value => $thisbranch, + selected => $selected, + branchname => $branches->{$thisbranch}->{'branchname'}, + ); + push @branchloop, \%row; +} +# branches calculated - put branch codes in a single string so they can be passed in a form +my $branchcodes = join("|", keys %$branches); + # Get all the holidays - warn "BRANCH : $branch"; my $calendar = C4::Calendar->new(branchcode => $branch); my $week_days_holidays = $calendar->get_week_days_holidays(); @@ -86,8 +94,18 @@ foreach my $weekday (keys %$week_days_holidays) { my $day_month_holidays = $calendar->get_day_month_holidays(); my @day_month_holidays; foreach my $monthDay (keys %$day_month_holidays) { + # Determine date format on month and day. + my $day_monthdate; + if (C4::Context->preference("dateformat") eq "metric") { + $day_monthdate = "$day_month_holidays->{$monthDay}{day}/$day_month_holidays->{$monthDay}{month}"; + } elsif (C4::Context->preference("dateformat") eq "us") { + $day_monthdate = "$day_month_holidays->{$monthDay}{month}/$day_month_holidays->{$monthDay}{day}"; + } else { + $day_monthdate = "$day_month_holidays->{$monthDay}{month}-$day_month_holidays->{$monthDay}{day}"; + } my %day_month; %day_month = (KEY => $monthDay, + DATE => $day_monthdate, TITLE => $day_month_holidays->{$monthDay}{title}, DESCRIPTION => $day_month_holidays->{$monthDay}{description}); push @day_month_holidays, \%day_month; @@ -96,8 +114,10 @@ foreach my $monthDay (keys %$day_month_holidays) { my $exception_holidays = $calendar->get_exception_holidays(); my @exception_holidays; foreach my $yearMonthDay (keys %$exception_holidays) { + my $exceptiondate = C4::Dates->new($exception_holidays->{$yearMonthDay}{date}, "iso"); my %exception_holiday; %exception_holiday = (KEY => $yearMonthDay, + DATE => $exceptiondate->output("syspref"), TITLE => $exception_holidays->{$yearMonthDay}{title}, DESCRIPTION => $exception_holidays->{$yearMonthDay}{description}); push @exception_holidays, \%exception_holiday; @@ -106,26 +126,25 @@ foreach my $yearMonthDay (keys %$exception_holidays) { my $single_holidays = $calendar->get_single_holidays(); my @holidays; foreach my $yearMonthDay (keys %$single_holidays) { + my $holidaydate = C4::Dates->new($single_holidays->{$yearMonthDay}{date}, "iso"); my %holiday; %holiday = (KEY => $yearMonthDay, + DATE => $holidaydate->output("syspref"), TITLE => $single_holidays->{$yearMonthDay}{title}, DESCRIPTION => $single_holidays->{$yearMonthDay}{description}); push @holidays, \%holiday; } -# Replace the template values with the real ones -# If we have independent branches on we need to only let the user set holidays for their branch -if ( C4::Context->preference("IndependantBranches") ) { - $template->param(BRANCHES => C4::Context->userenv->{'branchname'}); -} -else { - $template->param(BRANCHES => $branchesList); -} -$template->param(WEEK_DAYS_LOOP => \@week_days); -$template->param(HOLIDAYS_LOOP => \@holidays); -$template->param(EXCEPTION_HOLIDAYS_LOOP => \@exception_holidays); -$template->param(DAY_MONTH_HOLIDAYS_LOOP => \@day_month_holidays); -$template->param(branch => $branch); +$template->param(WEEK_DAYS_LOOP => \@week_days, + branchloop => \@branchloop, + HOLIDAYS_LOOP => \@holidays, + EXCEPTION_HOLIDAYS_LOOP => \@exception_holidays, + DAY_MONTH_HOLIDAYS_LOOP => \@day_month_holidays, + calendardate => $calendardate, + keydate => $keydate, + branchcodes => $branchcodes, + branch => $branch + ); # Shows the template with the real values replaced output_html_with_http_headers $input, $cookie, $template->output;