<& /Elements/Header, Title => 'Schedule' &> %#init_overlib.html %foreach my $file (@files) { %} <& /Search/Calendar.html, @_, Query => "( Status = 'new' OR Status = 'open' OR Status = 'stalled') AND ( Type = 'reminder' OR 'Type' = 'ticket' )", #XXX and we have the magic custom field slots => scalar(@usernames), Embed => 'Schedule.html', DimPast => 1, Display => 'Schedule', DisplayArgs => [ username => \@usernames, LengthMin => $LengthMin, #oops, more freeside abstraction-leaking custnum => $ARGS{custnum}, pkgnum => $ARGS{pkgnum}, ], &> <%ONCE> my $timestep = RT->Config->Get('CalendarWeeklySizeMin') || 30; #1/2h <%init> my @files = (); #if ( ! $initialized ) { push @files, map "overlibmws$_", ( '', qw( _iframe _draggable _crossframe ) ); push @files, map { "${_}contentmws" } qw( iframe ajax ); #%} my @usernames = (); if ( ref($ARGS{username}) ) { @usernames = @{ $ARGS{username} }; } elsif ( $ARGS{username} ) { @usernames = ( $ARGS{username} ); } else { #XXX shouldn't even get offered the link in the first place rather than perl # barf, but this is better than erroring out later or empty @username die "Can't schedule an appointment - no employees are configured as installers"; } ( my $LengthMin = $ARGS{LengthMin} ) =~ /^\d+$/ or die 'non-numeric LengthMin'; my $cells = int($LengthMin / $timestep); $cells++ if $LengthMin % $timestep;