X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FCalendarSlotSchedule;h=3af90ff3e9dcb10cde326d42a739cb9085407c12;hb=2513882cf22e165f704cf3a0f9891dedb213a310;hp=e94bddfe24b411db27f603f8f6895a0a642f19c0;hpb=282d98b8ebad35123455dd8ccb414805a1624c6c;p=freeside.git diff --git a/rt/share/html/Elements/CalendarSlotSchedule b/rt/share/html/Elements/CalendarSlotSchedule index e94bddfe2..3af90ff3e 100644 --- a/rt/share/html/Elements/CalendarSlotSchedule +++ b/rt/share/html/Elements/CalendarSlotSchedule @@ -1,89 +1,45 @@ <%ARGS> + $Date => undef @Tickets => () - $slots => $default_slots, - $sday => undef, - $tod_row => undef, - $timestep => $default_timestep, + $slots => $default_slots + $sday => undef + $tod_row => undef + $timestep => $default_timestep + @username => () -<%SHARED> -my @slots = ( [], [], [], [], [], [], [] ); - -% warn $sday; -% #for my $t ( @{ $Tickets{$date->strftime("%F")} } ) { +% foreach my $username ( @username ) { + + % for my $t (@Tickets) { +% next unless $t->OwnerObj->Name eq $username; % -% #XXX off by 1h on daylight savings boundaries... 2 sundays a year -% my $starts = ($t->StartsObj->Unix - $t->StartsObj->SetToMidnight(Timezone=>'user'))/60; -% -% if ( $starts >= $tod_row && $starts < ($tod_row + $timestep) ) { -% #then we're a new entry, find a slot for us -% my $s = 0; -% while ( ref($slots[$sday]->[$s]) ) { $s++ } -% $slots[$sday]->[$s] = [ $t->Id, $t ]; -% } -% -% #XXX also off by 1h on daylight savings boundaries -% my $due = $t->DueObj->Unix - $t->DueObj->SetToMidnight; -% -% if ( $due <= $tod_row && $due > ($tod_row + $timestep ) ) { -% #then find our slot and remove us -% @{ $slots[$sday] } = -% map { (!ref($_) || $_->[0] != $t->Id) ? $_ : '' } -% @{ $slots[$sday] }; -% } -% -% } -% -% pop @{ $slots[$sday] } while @{ $slots[$sday] } && !ref($slots[$sday]->[-1]); +% next unless RTx::Calendar::LocalDate($t->StartsObj->Unix) +% eq $Date->strftime('%F'); #today % -% #now display: +% my($sm, $sh) = ($t->StartsObj->Localtime('user'))[1,2]; +% my $starts = $sh*60 + $sm; % -% if ( scalar(@{$slots[$sday]}) > $slots ) { -% #overflow situation, eek... could be handled better, how? - - - class="weekly -%# <% $is_today ? 'today' -%# : $is_yesterday ? 'yesterday' -%# : $is_aweekago ? 'aweekago' -%# : '' -%# %> - " - >MULTIPLE - - -% } else { +% my($dm, $dh) = ($t->DueObj->Localtime('user'))[1,2]; +% my $due = $dh*60 + $dm; % -% foreach my $slot ( @{ $slots[$sday] } ) { -% my( $id, $ticket ) = @$slot; - - <% $id %> - - -% } +% next if $starts >= ($tod_row+$timestep) || $due < $tod_row; % -% if ( scalar(@{$slots[$sday]}) < $slots ) { - - - class="weekly -%# <% $is_today ? 'today' -%# : $is_yesterday ? 'yesterday' -%# : $is_aweekago ? 'aweekago' -%# : '' -%# %> - " - > - +% warn $starts. ' = '. ($tod_row+$timestep); +% if ( $starts >= $tod_row ) { + <% $t->Id %> +% } else { + cont<% $t->Id %>... % } -% % } + +% } <%ONCE> my $default_slots = RT->Config->Get('CalendarWeeklySlots') || 5; my $default_timestep = RT->Config->Get('CalendarWeeklySizeMin') || 30; #1/2h