installers (calendaring), RT#16584
[freeside.git] / rt / share / html / Elements / CalendarSlotSchedule
index e94bddf..55c45cd 100644 (file)
 <%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
 </%ARGS>
-<%SHARED>
-my @slots = ( [], [], [], [], [], [], [] );
-</%SHARED>
-% warn $sday;
-%       #for my $t ( @{ $Tickets{$date->strftime("%F")} } ) {
-%       for my $t (@Tickets) {
+% foreach my $username ( @username ) {
 %
-%         #XXX off by 1h on daylight savings boundaries... 2 sundays a year
-%         my $starts = ($t->StartsObj->Unix - $t->StartsObj->SetToMidnight(Timezone=>'user'))/60;
+%   my %schedule = UserDaySchedule( username => $username,
+%                                   'date'   => $Date->strftime('%F'),
+%                                   Tickets  => \@Tickets,
+%                                 );
 %
-%         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 ];
-%         }
+%   my $bgcolor = '666666;border-color:#555555';
+%   my $content = '';
+%   my $selectable = 0;
 %
-%         #XXX also off by 1h on daylight savings boundaries
-%         my $due = $t->DueObj->Unix - $t->DueObj->SetToMidnight;
+%   #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'} };
+%   }
 %
-%         if ( $due <= $tod_row && $due > ($tod_row + $timestep ) ) {
-%           #then find our slot and remove us
-%           @{ $slots[$sday] } =
-%             map { (!ref($_) || $_->[0] != $t->Id) ? $_ : '' }
-%               @{ $slots[$sday] };
-%         }
+%   #block out / show / color code existing appointments
+%   #my %line = ();
+%   foreach my $id ( keys %{ $schedule{'scheduled'} } ) {
 %
-%       }
+%     my( $starts, $due, $col, $t ) = @{ $schedule{'scheduled'}->{$id} };
 %
-%       pop @{ $slots[$sday] } while @{ $slots[$sday] } && !ref($slots[$sday]->[-1]);
+%     next if $starts >= ($tod_row+$timestep) || $due <= $tod_row;
 %
-%       #now display:
+%     $bgcolor = $col;
+%     $selectable = 0;
 %
-%       if ( scalar(@{$slots[$sday]}) > $slots ) {
-%         #overflow situation, eek... could be handled better, how?
+%     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;
+%     }
+%   }
 
-          <td colspan=<%$slots%>
-              class="weekly
-%#                     <%   $is_today     ? 'today'
-%#                        : $is_yesterday ? 'yesterday'
-%#                        : $is_aweekago  ? 'aweekago'
-%#                        : ''
-%#                     %>
-                         "
-          >MULTIPLE
-          </td>
-
-%       } else {
+    <td style="background:#<%$bgcolor%>"
+        class="<% $selectable ? 'weeklyselectable' : 'weekly' %>"
+%#               <%   $is_today     ? 'today'
+%#                  : $is_yesterday ? 'yesterday'
+%#                  : $is_aweekago  ? 'aweekago'
+%#                  : ''
+%#               %>"
+%     if ( $selectable ) {
 %
-%         foreach my $slot ( @{ $slots[$sday] } ) {
-%           my( $id, $ticket ) = @$slot;
-
-            <td class="weekly
-%#                       <%   $is_today     ? 'today'
-%#                          : $is_yesterday ? 'yesterday'
-%#                          : $is_aweekago  ? 'aweekago'
-%#                          : ''
-%#                       %>
-                           "
-            ><% $id %>
-            </td>
-
-%         }
+%       #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
 %
-%         if ( scalar(@{$slots[$sday]}) < $slots ) {
-
-            <td colspan=<% $slots - scalar(@{$slots[$sday]}) %>
-                class="weekly
-%#                       <%   $is_today     ? 'today'
-%#                          : $is_yesterday ? 'yesterday'
-%#                          : $is_aweekago  ? 'aweekago'
-%#                          : ''
-%#                       %>
-                           "
-            >
-            </td>
-%         }
+%       #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 %></td>
+% }
 <%ONCE>
 my $default_slots = RT->Config->Get('CalendarWeeklySlots') || 5;
 my $default_timestep = RT->Config->Get('CalendarWeeklySizeMin') || 30; #1/2h
 </%ONCE>
+<%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;
+
+</%INIT>