X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FCalendarSlotSchedule;h=55c45cd4155ec33d5d694ce9c64e632e070f1cf9;hb=3b747e41c8795c2fed2cbbe2993a6a445d7546a3;hp=3af90ff3e9dcb10cde326d42a739cb9085407c12;hpb=2513882cf22e165f704cf3a0f9891dedb213a310;p=freeside.git diff --git a/rt/share/html/Elements/CalendarSlotSchedule b/rt/share/html/Elements/CalendarSlotSchedule index 3af90ff3e..55c45cd41 100644 --- a/rt/share/html/Elements/CalendarSlotSchedule +++ b/rt/share/html/Elements/CalendarSlotSchedule @@ -1,46 +1,112 @@ <%ARGS> - $Date => undef - @Tickets => () - $slots => $default_slots - $sday => undef - $tod_row => undef - $timestep => $default_timestep - @username => () + $Date => undef + @Tickets => () + $slots => $default_slots + $sday => undef + $tod_row => undef + $timestep => $default_timestep + @username => () + $LengthMin => $default_timestep + $custnum => undef + $pkgnum => undef % foreach my $username ( @username ) { +% +% my %schedule = UserDaySchedule( username => $username, +% 'date' => $Date->strftime('%F'), +% Tickets => \@Tickets, +% ); +% +% my $bgcolor = '666666;border-color:#555555'; +% my $content = ''; +% my $selectable = 0; +% +% #white out available times +% foreach my $avail ( @{ $schedule{'avail'} } ) { +% my( $start, $end ) = @$avail; +% next if $start >= ($tod_row+$timestep) || $end <= $tod_row; +% $bgcolor = 'FFFFFF'; +% $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 %line = (); +% foreach my $id ( keys %{ $schedule{'scheduled'} } ) { +% +% my( $starts, $due, $col, $t ) = @{ $schedule{'scheduled'}->{$id} }; +% +% next if $starts >= ($tod_row+$timestep) || $due <= $tod_row; +% +% $bgcolor = $col; +% $selectable = 0; +% +% if ( $starts >= $tod_row ) { #first row +% $content .= ($content?', ':''). $id. +% ': '. FS::sched_avail::pretty_time($starts). '-'. +% FS::sched_avail::pretty_time($due); +% #'install for custname XX miles away'; #XXX placeholder/more +% #} else { +% # $content .= ($content?', ':''). $id; +% } +% } - " + class="<% $selectable ? 'weeklyselectable' : 'weekly' %>" %# <% $is_today ? 'today' %# : $is_yesterday ? 'yesterday' %# : $is_aweekago ? 'aweekago' %# : '' -%# %> - " - > -% for my $t (@Tickets) { -% next unless $t->OwnerObj->Name eq $username; -% -% next unless RTx::Calendar::LocalDate($t->StartsObj->Unix) -% eq $Date->strftime('%F'); #today -% -% my($sm, $sh) = ($t->StartsObj->Localtime('user'))[1,2]; -% my $starts = $sh*60 + $sm; -% -% my($dm, $dh) = ($t->DueObj->Localtime('user'))[1,2]; -% my $due = $dh*60 + $dm; -% -% next if $starts >= ($tod_row+$timestep) || $due < $tod_row; -% -% warn $starts. ' = '. ($tod_row+$timestep); -% if ( $starts >= $tod_row ) { - <% $t->Id %> -% } else { - cont<% $t->Id %>... -% } -% } - +%# %>" +% if ( $selectable ) { +% +% #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 $Queue = $cust_main->agent->ticketing_queueid || 1; # || $default_queueid;#XXX really, pick pkg_category queue +% my $member = "freeside://freeside/cust_main/$custnum"; +% +%warn my $Starts = int($tod_row/60). ':'. sprintf('%02d',$tod_row%60). ':00'; +%warn 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? +% #'&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 %>'" +% } + ><% $content %> % } <%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; + +