X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FCalendarSlotSchedule;h=f12b4a6bebefee7e3988dacfe3dfa2addcec7dc0;hb=HEAD;hp=e94bddfe24b411db27f603f8f6895a0a642f19c0;hpb=e6341bb01533cc32252676ea40bb94bbd2613a37;p=freeside.git diff --git a/rt/share/html/Elements/CalendarSlotSchedule b/rt/share/html/Elements/CalendarSlotSchedule index e94bddfe2..f12b4a6be 100644 --- a/rt/share/html/Elements/CalendarSlotSchedule +++ b/rt/share/html/Elements/CalendarSlotSchedule @@ -1,90 +1,191 @@ <%ARGS> - @Tickets => () - $slots => $default_slots, - $sday => undef, - $tod_row => undef, - $timestep => $default_timestep, + $Date => undef + @Tickets => () + $slots => $default_slots + $sday => undef + $tod_row => undef + $timestep => $default_timestep + @username => () + $LengthMin => $default_timestep + $custnum => undef + $pkgnum => undef + $RedirectToBasics => 0 -<%SHARED> -my @slots = ( [], [], [], [], [], [], [] ); - -% warn $sday; -% #for my $t ( @{ $Tickets{$date->strftime("%F")} } ) { -% for my $t (@Tickets) { -% -% #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] }; -% } +% my $scheduling = ($custnum && $LengthMin) ? 1 : 0; +% foreach my $username ( @username ) { % -% } +% my %schedule = UserDaySchedule( username => $username, +% 'date' => $Date->strftime('%F'), +% Tickets => \@Tickets, +% ); +% +% my $bgcolor = '#666666'; +% my $border = '1px solid #555555'; +% my $label_time = ''; +% my $label_title = ''; +% my $selectable = 0; # can we schedule a new appointment +% my $ticketid = 0; +% my $draggable_length = 0; +% my $droppable = 0; # can we reschedule an appointment here +% my $cells = 0; # total cell count for appointment +% my $offset = 0; # position of cell in appointment +% +% #white out available times +% foreach my $avail ( @{ $schedule{'avail'} } ) { +% my( $start, $end ) = @$avail; +% next if $start >= ($tod_row+$timestep) || $end <= $tod_row; +% $bgcolor = '#FFFFFF'; +% $border = '1px solid #D7D7D7'; +% $selectable = 1 +% if $LengthMin <= $end - $tod_row #the slot is long enough +% && ! grep { $_ > $tod_row && $LengthMin > $_ - $tod_row } +% map $_->[0], values %{ $schedule{'scheduled'} }; +% } +% +% #block out / show / color code existing appointments +% my $maxstarts = 0; +% foreach my $id ( keys %{ $schedule{'scheduled'} } ) { +% +% my( $starts, $due, $col, $t ) = @{ $schedule{'scheduled'}->{$id} }; +% +% # misleading loop--at most one id should pass this test +% next if $starts >= ($tod_row+$timestep) || $due <= $tod_row; % -% pop @{ $slots[$sday] } while @{ $slots[$sday] } && !ref($slots[$sday]->[-1]); +% # but, if for any reason a scheduling conflict occurs, +% # use the later starting one to minimize UI conflicts-- +% # not to imply that this scenario has been tested or should ever happen!!! +% next if $starts < $maxstarts; +% $maxstarts = $starts; % -% #now display: +% $ticketid = $id; +% $bgcolor = '#'.$col; +% $border = '1px solid #D7D7D7'; +% # can't schedule a new appointment +% $selectable = 0; +% # but can reschedule a ticket overlapping its old slot (filtered by can_drop) +% $droppable = 1 unless $scheduling; +% $draggable_length = $due - $starts; +% $cells = int( ($due-$starts) / $timestep ); +% $cells++ if ($due-$starts) % $timestep; % -% if ( scalar(@{$slots[$sday]}) > $slots ) { -% #overflow situation, eek... could be handled better, how? +% #false laziness w/misc/xmlhttp-ticket-update.html & CalendarDaySchedule +% my %hash = $m->comp('/Ticket/Elements/Customers', Ticket => $t); +% my @cust_main = values( %{$hash{cust_main}} ); +% +% #false laziness w/xmlhttp-ticket-update.html +% $label_time = FS::sched_avail::pretty_time($starts). '-'. +% FS::sched_avail::pretty_time($due); +% $label_title = $cust_main[0]->_FreesideURILabel; +% #'install for custname XX miles away'; #XXX placeholder/more +% +% $offset = int( ($tod_row - $starts) / $timestep ); +% $offset++ if ($tod_row - $starts) % $timestep; +% } +% +% my $td_id = 'td_'. $Date->epoch. '_'. $tod_row. '_'. $username; - - class="weekly -%# <% $is_today ? 'today' -%# : $is_yesterday ? 'yesterday' -%# : $is_aweekago ? 'aweekago' -%# : '' -%# %> - " - >MULTIPLE - + " +% if ( $selectable ) { +% +% # Scheduling a new appointment +% if ( $scheduling ) { +% +% #XXX for now, construct a ticket creation URL +% # eventually, do much the same, but say "appointment made", show time +% # and date, have # options to do things with it? etc. +% # then redir back to customer/appointment view i guess +% +% #abstraction is leaking like a sieve... linking back to freeside cust +% # (XXX and eventually, package) +% my $cust_main = qsearchs('cust_main', { custnum=>$custnum } ) +% or die "unknown custnum $custnum"; +% +% my $conf = new FS::Conf; +% my $Queue = $conf->config('ticket_system-appointment-queueid') +% or die "ticket_system-appointment-queueid configuration not set"; +% +% my $member = "freeside://freeside/cust_main/$custnum"; +% +% my $Starts = int($tod_row/60). ':'. sprintf('%02d',$tod_row%60). ':00'; +% my $Due = int(($tod_row+$LengthMin)/60). ':'. +% sprintf('%02d',($tod_row+$LengthMin)%60). ':00'; +% +% my $url = $RT::WebPath. '/Ticket/Display.html?id=new'. +% "&Queue=$Queue". +% "&Owner=$username". +% '&Starts='. $Date->strftime('%F').'%20'. $Starts. +% '&Due='. $Date->strftime('%F').'%20'. $Due. +% '&new-MemberOf='. $member. #XXX uri_escape? +% '&Status=new'. +% '&RedirectToBasics='.$RedirectToBasics; +% #'&Requestors='. #XXX Freeside customer requestor(s) (package? + onmouseover = "boxon(this);" + onmouseout = "boxoff(this);" + title = "<% 'Make appointment for '. + FS::sched_avail::pretty_time($tod_row). '-'. + FS::sched_avail::pretty_time($tod_row+$LengthMin) + %>" + onclick = "window.location.href = '<% $url %>'" +% +% # If not scheduling, allow drag-and-drop rescheduling % } else { +% $droppable = 1; +% } % -% foreach my $slot ( @{ $slots[$sday] } ) { -% my( $id, $ticket ) = @$slot; +% } + > + +% } <%ONCE> my $default_slots = RT->Config->Get('CalendarWeeklySlots') || 5; my $default_timestep = RT->Config->Get('CalendarWeeklySizeMin') || 30; #1/2h +<%INIT> + +use RTx::Schedule qw( UserDaySchedule ); +use FS::sched_avail; #just for pretty_time + +#what happened? alas. for constructing the ticket creation links +use FS::Record qw( qsearchs ); +use FS::cust_main; + +