Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / C4 / Calendar.pm
blob6a5d8a79a49ef8220a9f6c6303bdd1d703e6f56f
1 package C4::Calendar;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use strict;
19 use warnings;
20 use vars qw(@EXPORT);
22 use Carp;
23 use Date::Calc qw( Date_to_Days Today);
25 use C4::Context;
26 use Koha::Caches;
28 use constant ISO_DATE_FORMAT => "%04d-%02d-%02d";
30 =head1 NAME
32 C4::Calendar::Calendar - Koha module dealing with holidays.
34 =head1 SYNOPSIS
36 use C4::Calendar::Calendar;
38 =head1 DESCRIPTION
40 This package is used to deal with holidays. Through this package, you can set
41 all kind of holidays for the library.
43 =head1 FUNCTIONS
45 =head2 new
47 $calendar = C4::Calendar->new(branchcode => $branchcode);
49 Each library branch has its own Calendar.
50 C<$branchcode> specifies which Calendar you want.
52 =cut
54 sub new {
55 my $classname = shift @_;
56 my %options = @_;
57 my $self = bless({}, $classname);
58 foreach my $optionName (keys %options) {
59 $self->{lc($optionName)} = $options{$optionName};
61 defined($self->{branchcode}) or croak "No branchcode argument to new. Should be C4::Calendar->new(branchcode => \$branchcode)";
62 $self->_init($self->{branchcode});
63 return $self;
66 sub _init {
67 my $self = shift @_;
68 my $branch = shift;
69 defined($branch) or die "No branchcode sent to _init"; # must test for defined here and above to allow ""
70 my $dbh = C4::Context->dbh();
71 my $repeatable = $dbh->prepare( 'SELECT *
72 FROM repeatable_holidays
73 WHERE ( branchcode = ? )
74 AND (ISNULL(weekday) = ?)' );
75 $repeatable->execute($branch,0);
76 my %week_days_holidays;
77 while (my $row = $repeatable->fetchrow_hashref) {
78 my $key = $row->{weekday};
79 $week_days_holidays{$key}{title} = $row->{title};
80 $week_days_holidays{$key}{description} = $row->{description};
82 $self->{'week_days_holidays'} = \%week_days_holidays;
84 $repeatable->execute($branch,1);
85 my %day_month_holidays;
86 while (my $row = $repeatable->fetchrow_hashref) {
87 my $key = $row->{month} . "/" . $row->{day};
88 $day_month_holidays{$key}{title} = $row->{title};
89 $day_month_holidays{$key}{description} = $row->{description};
90 $day_month_holidays{$key}{day} = sprintf("%02d", $row->{day});
91 $day_month_holidays{$key}{month} = sprintf("%02d", $row->{month});
93 $self->{'day_month_holidays'} = \%day_month_holidays;
95 my $special = $dbh->prepare( 'SELECT day, month, year, title, description
96 FROM special_holidays
97 WHERE ( branchcode = ? )
98 AND (isexception = ?)' );
99 $special->execute($branch,1);
100 my %exception_holidays;
101 while (my ($day, $month, $year, $title, $description) = $special->fetchrow) {
102 $exception_holidays{"$year/$month/$day"}{title} = $title;
103 $exception_holidays{"$year/$month/$day"}{description} = $description;
104 $exception_holidays{"$year/$month/$day"}{date} =
105 sprintf(ISO_DATE_FORMAT, $year, $month, $day);
107 $self->{'exception_holidays'} = \%exception_holidays;
109 $special->execute($branch,0);
110 my %single_holidays;
111 while (my ($day, $month, $year, $title, $description) = $special->fetchrow) {
112 $single_holidays{"$year/$month/$day"}{title} = $title;
113 $single_holidays{"$year/$month/$day"}{description} = $description;
114 $single_holidays{"$year/$month/$day"}{date} =
115 sprintf(ISO_DATE_FORMAT, $year, $month, $day);
117 $self->{'single_holidays'} = \%single_holidays;
118 return $self;
121 =head2 get_week_days_holidays
123 $week_days_holidays = $calendar->get_week_days_holidays();
125 Returns a hash reference to week days holidays.
127 =cut
129 sub get_week_days_holidays {
130 my $self = shift @_;
131 my $week_days_holidays = $self->{'week_days_holidays'};
132 return $week_days_holidays;
135 =head2 get_day_month_holidays
137 $day_month_holidays = $calendar->get_day_month_holidays();
139 Returns a hash reference to day month holidays.
141 =cut
143 sub get_day_month_holidays {
144 my $self = shift @_;
145 my $day_month_holidays = $self->{'day_month_holidays'};
146 return $day_month_holidays;
149 =head2 get_exception_holidays
151 $exception_holidays = $calendar->exception_holidays();
153 Returns a hash reference to exception holidays. This kind of days are those
154 which stands for a holiday, but you wanted to make an exception for this particular
155 date.
157 =cut
159 sub get_exception_holidays {
160 my $self = shift @_;
161 my $exception_holidays = $self->{'exception_holidays'};
162 return $exception_holidays;
165 =head2 get_single_holidays
167 $single_holidays = $calendar->get_single_holidays();
169 Returns a hash reference to single holidays. This kind of holidays are those which
170 happened just one time.
172 =cut
174 sub get_single_holidays {
175 my $self = shift @_;
176 my $single_holidays = $self->{'single_holidays'};
177 return $single_holidays;
180 =head2 insert_week_day_holiday
182 insert_week_day_holiday(weekday => $weekday,
183 title => $title,
184 description => $description);
186 Inserts a new week day for $self->{branchcode}.
188 C<$day> Is the week day to make holiday.
190 C<$title> Is the title to store for the holiday formed by $year/$month/$day.
192 C<$description> Is the description to store for the holiday formed by $year/$month/$day.
194 =cut
196 sub insert_week_day_holiday {
197 my $self = shift @_;
198 my %options = @_;
200 my $weekday = $options{weekday};
201 croak "Invalid weekday $weekday" unless $weekday =~ m/^[0-6]$/;
203 my $dbh = C4::Context->dbh();
204 my $insertHoliday = $dbh->prepare("insert into repeatable_holidays (branchcode,weekday,day,month,title,description) values ( ?,?,NULL,NULL,?,? )");
205 $insertHoliday->execute( $self->{branchcode}, $weekday, $options{title}, $options{description});
206 $self->{'week_days_holidays'}->{$weekday}{title} = $options{title};
207 $self->{'week_days_holidays'}->{$weekday}{description} = $options{description};
208 return $self;
211 =head2 insert_day_month_holiday
213 insert_day_month_holiday(day => $day,
214 month => $month,
215 title => $title,
216 description => $description);
218 Inserts a new day month holiday for $self->{branchcode}.
220 C<$day> Is the day month to make the date to insert.
222 C<$month> Is month to make the date to insert.
224 C<$title> Is the title to store for the holiday formed by $year/$month/$day.
226 C<$description> Is the description to store for the holiday formed by $year/$month/$day.
228 =cut
230 sub insert_day_month_holiday {
231 my $self = shift @_;
232 my %options = @_;
234 my $dbh = C4::Context->dbh();
235 my $insertHoliday = $dbh->prepare("insert into repeatable_holidays (branchcode,weekday,day,month,title,description) values (?, NULL, ?, ?, ?,? )");
236 $insertHoliday->execute( $self->{branchcode}, $options{day},$options{month},$options{title}, $options{description});
237 $self->{'day_month_holidays'}->{"$options{month}/$options{day}"}{title} = $options{title};
238 $self->{'day_month_holidays'}->{"$options{month}/$options{day}"}{description} = $options{description};
239 return $self;
242 =head2 insert_single_holiday
244 insert_single_holiday(day => $day,
245 month => $month,
246 year => $year,
247 title => $title,
248 description => $description);
250 Inserts a new single holiday for $self->{branchcode}.
252 C<$day> Is the day month to make the date to insert.
254 C<$month> Is month to make the date to insert.
256 C<$year> Is year to make the date to insert.
258 C<$title> Is the title to store for the holiday formed by $year/$month/$day.
260 C<$description> Is the description to store for the holiday formed by $year/$month/$day.
262 =cut
264 sub insert_single_holiday {
265 my $self = shift @_;
266 my %options = @_;
267 @options{qw(year month day)} = ( $options{date} =~ m/(\d+)-(\d+)-(\d+)/o )
268 if $options{date} && !$options{day};
270 my $dbh = C4::Context->dbh();
271 my $isexception = 0;
272 my $insertHoliday = $dbh->prepare("insert into special_holidays (branchcode,day,month,year,isexception,title,description) values (?,?,?,?,?,?,?)");
273 $insertHoliday->execute( $self->{branchcode}, $options{day},$options{month},$options{year}, $isexception, $options{title}, $options{description});
274 $self->{'single_holidays'}->{"$options{year}/$options{month}/$options{day}"}{title} = $options{title};
275 $self->{'single_holidays'}->{"$options{year}/$options{month}/$options{day}"}{description} = $options{description};
278 # changed the 'single_holidays' table, lets force/reset its cache
279 my $cache = Koha::Caches->get_instance();
280 my $key = $self->{branchcode} . "_holidays";
281 $cache->clear_from_cache($key);
283 return $self;
287 =head2 insert_exception_holiday
289 insert_exception_holiday(day => $day,
290 month => $month,
291 year => $year,
292 title => $title,
293 description => $description);
295 Inserts a new exception holiday for $self->{branchcode}.
297 C<$day> Is the day month to make the date to insert.
299 C<$month> Is month to make the date to insert.
301 C<$year> Is year to make the date to insert.
303 C<$title> Is the title to store for the holiday formed by $year/$month/$day.
305 C<$description> Is the description to store for the holiday formed by $year/$month/$day.
307 =cut
309 sub insert_exception_holiday {
310 my $self = shift @_;
311 my %options = @_;
313 @options{qw(year month day)} = ( $options{date} =~ m/(\d+)-(\d+)-(\d+)/o )
314 if $options{date} && !$options{day};
316 my $dbh = C4::Context->dbh();
317 my $isexception = 1;
318 my $insertException = $dbh->prepare("insert into special_holidays (branchcode,day,month,year,isexception,title,description) values (?,?,?,?,?,?,?)");
319 $insertException->execute( $self->{branchcode}, $options{day},$options{month},$options{year}, $isexception, $options{title}, $options{description});
320 $self->{'exception_holidays'}->{"$options{year}/$options{month}/$options{day}"}{title} = $options{title};
321 $self->{'exception_holidays'}->{"$options{year}/$options{month}/$options{day}"}{description} = $options{description};
323 # changed the 'single_holidays' table, lets force/reset its cache
324 my $cache = Koha::Caches->get_instance();
325 my $key = $self->{branchcode} . "_holidays";
326 $cache->clear_from_cache($key);
328 return $self;
331 =head2 ModWeekdayholiday
333 ModWeekdayholiday(weekday =>$weekday,
334 title => $title,
335 description => $description)
337 Modifies the title and description of a weekday for $self->{branchcode}.
339 C<$weekday> Is the title to update for the holiday.
341 C<$description> Is the description to update for the holiday.
343 =cut
345 sub ModWeekdayholiday {
346 my $self = shift @_;
347 my %options = @_;
349 my $dbh = C4::Context->dbh();
350 my $updateHoliday = $dbh->prepare("UPDATE repeatable_holidays SET title = ?, description = ? WHERE branchcode = ? AND weekday = ?");
351 $updateHoliday->execute( $options{title},$options{description},$self->{branchcode},$options{weekday});
352 $self->{'week_days_holidays'}->{$options{weekday}}{title} = $options{title};
353 $self->{'week_days_holidays'}->{$options{weekday}}{description} = $options{description};
354 return $self;
357 =head2 ModDaymonthholiday
359 ModDaymonthholiday(day => $day,
360 month => $month,
361 title => $title,
362 description => $description);
364 Modifies the title and description for a day/month holiday for $self->{branchcode}.
366 C<$day> The day of the month for the update.
368 C<$month> The month to be used for the update.
370 C<$title> The title to be updated for the holiday.
372 C<$description> The description to be update for the holiday.
374 =cut
376 sub ModDaymonthholiday {
377 my $self = shift @_;
378 my %options = @_;
380 my $dbh = C4::Context->dbh();
381 my $updateHoliday = $dbh->prepare("UPDATE repeatable_holidays SET title = ?, description = ? WHERE month = ? AND day = ? AND branchcode = ?");
382 $updateHoliday->execute( $options{title},$options{description},$options{month},$options{day},$self->{branchcode});
383 $self->{'day_month_holidays'}->{"$options{month}/$options{day}"}{title} = $options{title};
384 $self->{'day_month_holidays'}->{"$options{month}/$options{day}"}{description} = $options{description};
385 return $self;
388 =head2 ModSingleholiday
390 ModSingleholiday(day => $day,
391 month => $month,
392 year => $year,
393 title => $title,
394 description => $description);
396 Modifies the title and description for a single holiday for $self->{branchcode}.
398 C<$day> Is the day of the month to make the update.
400 C<$month> Is the month to make the update.
402 C<$year> Is the year to make the update.
404 C<$title> Is the title to update for the holiday formed by $year/$month/$day.
406 C<$description> Is the description to update for the holiday formed by $year/$month/$day.
408 =cut
410 sub ModSingleholiday {
411 my $self = shift @_;
412 my %options = @_;
414 my $dbh = C4::Context->dbh();
415 my $isexception = 0;
417 my $updateHoliday = $dbh->prepare("
418 UPDATE special_holidays SET title = ?, description = ?
419 WHERE day = ? AND month = ? AND year = ? AND branchcode = ? AND isexception = ?");
420 $updateHoliday->execute($options{title},$options{description},$options{day},$options{month},$options{year},$self->{branchcode},$isexception);
421 $self->{'single_holidays'}->{"$options{year}/$options{month}/$options{day}"}{title} = $options{title};
422 $self->{'single_holidays'}->{"$options{year}/$options{month}/$options{day}"}{description} = $options{description};
424 # changed the 'single_holidays' table, lets force/reset its cache
425 my $cache = Koha::Caches->get_instance();
426 my $key = $self->{branchcode} . "_holidays";
427 $cache->clear_from_cache($key);
429 return $self;
432 =head2 ModExceptionholiday
434 ModExceptionholiday(day => $day,
435 month => $month,
436 year => $year,
437 title => $title,
438 description => $description);
440 Modifies the title and description for an exception holiday for $self->{branchcode}.
442 C<$day> Is the day of the month for the holiday.
444 C<$month> Is the month for the holiday.
446 C<$year> Is the year for the holiday.
448 C<$title> Is the title to be modified for the holiday formed by $year/$month/$day.
450 C<$description> Is the description to be modified for the holiday formed by $year/$month/$day.
452 =cut
454 sub ModExceptionholiday {
455 my $self = shift @_;
456 my %options = @_;
458 my $dbh = C4::Context->dbh();
459 my $isexception = 1;
460 my $updateHoliday = $dbh->prepare("
461 UPDATE special_holidays SET title = ?, description = ?
462 WHERE day = ? AND month = ? AND year = ? AND branchcode = ? AND isexception = ?");
463 $updateHoliday->execute($options{title},$options{description},$options{day},$options{month},$options{year},$self->{branchcode},$isexception);
464 $self->{'exception_holidays'}->{"$options{year}/$options{month}/$options{day}"}{title} = $options{title};
465 $self->{'exception_holidays'}->{"$options{year}/$options{month}/$options{day}"}{description} = $options{description};
467 # changed the 'single_holidays' table, lets force/reset its cache
468 my $cache = Koha::Caches->get_instance();
469 my $key = $self->{branchcode} . "_holidays";
470 $cache->clear_from_cache($key);
472 return $self;
475 =head2 delete_holiday
477 delete_holiday(weekday => $weekday
478 day => $day,
479 month => $month,
480 year => $year);
482 Delete a holiday for $self->{branchcode}.
484 C<$weekday> Is the week day to delete.
486 C<$day> Is the day month to make the date to delete.
488 C<$month> Is month to make the date to delete.
490 C<$year> Is year to make the date to delete.
492 =cut
494 sub delete_holiday {
495 my $self = shift @_;
496 my %options = @_;
498 # Verify what kind of holiday that day is. For example, if it is
499 # a repeatable holiday, this should check if there are some exception
500 # for that holiday rule. Otherwise, if it is a regular holiday, it´s
501 # ok just deleting it.
503 my $dbh = C4::Context->dbh();
504 my $isSingleHoliday = $dbh->prepare("SELECT id FROM special_holidays WHERE (branchcode = ?) AND (day = ?) AND (month = ?) AND (year = ?)");
505 $isSingleHoliday->execute($self->{branchcode}, $options{day}, $options{month}, $options{year});
506 if ($isSingleHoliday->rows) {
507 my $id = $isSingleHoliday->fetchrow;
508 $isSingleHoliday->finish; # Close the last query
510 my $deleteHoliday = $dbh->prepare("DELETE FROM special_holidays WHERE id = ?");
511 $deleteHoliday->execute($id);
512 delete($self->{'single_holidays'}->{"$options{year}/$options{month}/$options{day}"});
513 } else {
514 $isSingleHoliday->finish; # Close the last query
516 my $isWeekdayHoliday = $dbh->prepare("SELECT id FROM repeatable_holidays WHERE branchcode = ? AND weekday = ?");
517 $isWeekdayHoliday->execute($self->{branchcode}, $options{weekday});
518 if ($isWeekdayHoliday->rows) {
519 my $id = $isWeekdayHoliday->fetchrow;
520 $isWeekdayHoliday->finish; # Close the last query
522 my $updateExceptions = $dbh->prepare("UPDATE special_holidays SET isexception = 0 WHERE (WEEKDAY(CONCAT(special_holidays.year,'-',special_holidays.month,'-',special_holidays.day)) = ?) AND (branchcode = ?)");
523 $updateExceptions->execute($options{weekday}, $self->{branchcode});
524 $updateExceptions->finish; # Close the last query
526 my $deleteHoliday = $dbh->prepare("DELETE FROM repeatable_holidays WHERE id = ?");
527 $deleteHoliday->execute($id);
528 delete($self->{'week_days_holidays'}->{$options{weekday}});
529 } else {
530 $isWeekdayHoliday->finish; # Close the last query
532 my $isDayMonthHoliday = $dbh->prepare("SELECT id FROM repeatable_holidays WHERE (branchcode = ?) AND (day = ?) AND (month = ?)");
533 $isDayMonthHoliday->execute($self->{branchcode}, $options{day}, $options{month});
534 if ($isDayMonthHoliday->rows) {
535 my $id = $isDayMonthHoliday->fetchrow;
536 $isDayMonthHoliday->finish;
537 my $updateExceptions = $dbh->prepare("UPDATE special_holidays SET isexception = 0 WHERE (special_holidays.branchcode = ?) AND (special_holidays.day = ?) and (special_holidays.month = ?)");
538 $updateExceptions->execute($self->{branchcode}, $options{day}, $options{month});
539 $updateExceptions->finish; # Close the last query
541 my $deleteHoliday = $dbh->prepare("DELETE FROM repeatable_holidays WHERE (id = ?)");
542 $deleteHoliday->execute($id);
543 delete($self->{'day_month_holidays'}->{"$options{month}/$options{day}"});
548 # changed the 'single_holidays' table, lets force/reset its cache
549 my $cache = Koha::Caches->get_instance();
550 my $key = $self->{branchcode} . "_holidays";
551 $cache->clear_from_cache($key);
553 return $self;
555 =head2 delete_holiday_range
557 delete_holiday_range(day => $day,
558 month => $month,
559 year => $year);
561 Delete a holiday range of dates for $self->{branchcode}.
563 C<$day> Is the day month to make the date to delete.
565 C<$month> Is month to make the date to delete.
567 C<$year> Is year to make the date to delete.
569 =cut
571 sub delete_holiday_range {
572 my $self = shift;
573 my %options = @_;
575 my $dbh = C4::Context->dbh();
576 my $sth = $dbh->prepare("DELETE FROM special_holidays WHERE (branchcode = ?) AND (day = ?) AND (month = ?) AND (year = ?)");
577 $sth->execute($self->{branchcode}, $options{day}, $options{month}, $options{year});
579 # changed the 'single_holidays' table, lets force/reset its cache
580 my $cache = Koha::Caches->get_instance();
581 my $key = $self->{branchcode} . "_holidays";
582 $cache->clear_from_cache($key);
586 =head2 delete_holiday_range_repeatable
588 delete_holiday_range_repeatable(day => $day,
589 month => $month);
591 Delete a holiday for $self->{branchcode}.
593 C<$day> Is the day month to make the date to delete.
595 C<$month> Is month to make the date to delete.
597 =cut
599 sub delete_holiday_range_repeatable {
600 my $self = shift;
601 my %options = @_;
603 my $dbh = C4::Context->dbh();
604 my $sth = $dbh->prepare("DELETE FROM repeatable_holidays WHERE (branchcode = ?) AND (day = ?) AND (month = ?)");
605 $sth->execute($self->{branchcode}, $options{day}, $options{month});
608 =head2 delete_exception_holiday_range
610 delete_exception_holiday_range(weekday => $weekday
611 day => $day,
612 month => $month,
613 year => $year);
615 Delete a holiday for $self->{branchcode}.
617 C<$day> Is the day month to make the date to delete.
619 C<$month> Is month to make the date to delete.
621 C<$year> Is year to make the date to delete.
623 =cut
625 sub delete_exception_holiday_range {
626 my $self = shift;
627 my %options = @_;
629 my $dbh = C4::Context->dbh();
630 my $sth = $dbh->prepare("DELETE FROM special_holidays WHERE (branchcode = ?) AND (isexception = 1) AND (day = ?) AND (month = ?) AND (year = ?)");
631 $sth->execute($self->{branchcode}, $options{day}, $options{month}, $options{year});
633 # changed the 'single_holidays' table, lets force/reset its cache
634 my $cache = Koha::Caches->get_instance();
635 my $key = $self->{branchcode} . "_holidays";
636 $cache->clear_from_cache($key);
639 =head2 isHoliday
641 $isHoliday = isHoliday($day, $month $year);
643 C<$day> Is the day to check whether if is a holiday or not.
645 C<$month> Is the month to check whether if is a holiday or not.
647 C<$year> Is the year to check whether if is a holiday or not.
649 =cut
651 sub isHoliday {
652 my ($self, $day, $month, $year) = @_;
653 # FIXME - date strings are stored in non-padded metric format. should change to iso.
654 $month=$month+0;
655 $year=$year+0;
656 $day=$day+0;
657 my $weekday = &Date::Calc::Day_of_Week($year, $month, $day) % 7;
658 my $weekDays = $self->get_week_days_holidays();
659 my $dayMonths = $self->get_day_month_holidays();
660 my $exceptions = $self->get_exception_holidays();
661 my $singles = $self->get_single_holidays();
662 if (defined($exceptions->{"$year/$month/$day"})) {
663 return 0;
664 } else {
665 if ((exists($weekDays->{$weekday})) ||
666 (exists($dayMonths->{"$month/$day"})) ||
667 (exists($singles->{"$year/$month/$day"}))) {
668 return 1;
669 } else {
670 return 0;
676 =head2 copy_to_branch
678 $calendar->copy_to_branch($target_branch)
680 =cut
682 sub copy_to_branch {
683 my ($self, $target_branch) = @_;
685 croak "No target_branch" unless $target_branch;
687 my $target_calendar = C4::Calendar->new(branchcode => $target_branch);
689 my ($y, $m, $d) = Today();
690 my $today = sprintf ISO_DATE_FORMAT, $y,$m,$d;
692 my $wdh = $self->get_week_days_holidays;
693 my $target_wdh = $target_calendar->get_week_days_holidays;
694 foreach my $key (keys %$wdh) {
695 unless (grep { $_ eq $key } keys %$target_wdh) {
696 $target_calendar->insert_week_day_holiday( weekday => $key, %{ $wdh->{$key} } )
700 my $dmh = $self->get_day_month_holidays;
701 my $target_dmh = $target_calendar->get_day_month_holidays;
702 foreach my $values (values %$dmh) {
703 unless (grep { $_->{day} eq $values->{day} && $_->{month} eq $values->{month} } values %$target_dmh) {
704 $target_calendar->insert_day_month_holiday(%{ $values });
708 my $exception_holidays = $self->get_exception_holidays;
709 my $target_exceptions = $target_calendar->get_exception_holidays;
710 foreach my $values ( grep {$_->{date} gt $today} values %{ $exception_holidays }) {
711 unless ( grep { $_->{date} eq $values->{date} } values %$target_exceptions) {
712 $target_calendar->insert_exception_holiday(%{ $values });
716 my $single_holidays = $self->get_single_holidays;
717 my $target_singles = $target_calendar->get_single_holidays;
718 foreach my $values ( grep {$_->{date} gt $today} values %{ $single_holidays }) {
719 unless ( grep { $_->{date} eq $values->{date} } values %$target_singles){
720 $target_calendar->insert_single_holiday(%{ $values });
724 return 1;
729 __END__
731 =head1 AUTHOR
733 Koha Physics Library UNLP <matias_veleda@hotmail.com>
735 =cut