summaryrefslogtreecommitdiff
path: root/rt/share/html/Elements/CalendarSlotSchedule
blob: 4ff47670a0041028bebd444f8316c59a5df8d95a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<%ARGS>
  $Date      => undef
  @Tickets   => ()
  $slots     => $default_slots
  $sday      => undef
  $tod_row   => undef
  $timestep  => $default_timestep
  @username  => ()
  $LengthMin => $default_timestep
  $custnum   => undef
  $pkgnum    => undef
  $RedirectToBasics => 0
</%ARGS>
% foreach my $username ( @username ) {
%
%   my %schedule = UserDaySchedule( username => $username,
%                                   'date'   => $Date->strftime('%F'),
%                                   Tickets  => \@Tickets,
%                                 );
%
%   my $bgcolor = '666666;border-color:#555555';
%   my $content = '';
%   my $link = '';
%   my $selectable = 0;
%   my $draggable_ticketid = 0;
%   my $draggable_length = 0;
%   my $droppable = 0;
%   my $cells = 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
%
%       #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}} );
%
%       $content .= ($content?', ':''). #$id. ': '.
%                   #false laziness w/xmlhttp-ticket-update.html
%                   FS::sched_avail::pretty_time($starts). '-'.
%                   FS::sched_avail::pretty_time($due).
%                   ': '. $cust_main[0]->_FreesideURILabel;
%                   #'install for custname XX miles away'; #XXX placeholder/more
%       $link = qq( <A HREF="$RT::WebPath/Ticket/Display.html?id=$id">view</A>);
%       $draggable_ticketid = $id;
%       $draggable_length = $due - $starts;
%
%       $cells = int( ($due-$starts) / $timestep );
%       $cells++ if ($due-$starts) % $timestep;
%       
%     #} else {
%     #  $content .= ($content?', ':''). $id;
%     }
%   }
%
%   my $td_id = 'td_'. $Date->epoch. '_'. $tod_row. '_'. $username;

    <td style = "background-color:#<%$bgcolor%>"
          ID="<% $td_id %>"
        class = "<% ($selectable && $custnum && $LengthMin) ? 'weeklyselectable' : 'weekly' %>"
%#                 <%   $is_today     ? 'today'
%#                    : $is_yesterday ? 'yesterday'
%#                    : $is_aweekago  ? 'aweekago'
%#                    : ''
%#                 %>"
%     if ( $selectable ) {
%
%       if ( $custnum && $LengthMin ) {
%
%         #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";
%
%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?
%                   '&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 %>'"
%
%       } else {
%         $droppable = 1;
%       }
%
%     }
    ><% $content |h %><% $link |n %></td>
    <SCRIPT TYPE="text/javascript">

      $('#<% $td_id %>').data('username', "<% $username %>");
      $('#<% $td_id %>').data('starts',   <% $Date->epoch + $tod_row*60 %>);
      $('#<% $td_id %>').data('epoch',    <% $Date->epoch %>);
      $('#<% $td_id %>').data('tod_row',  <% $tod_row %>);

%     if ( $droppable ) {
        $('#<% $td_id %>').droppable({
          over: boxon_drop,
          drop: reschedule_appointment,
          tolerance: 'pointer'
        });
%     }

%     if ( $draggable_ticketid ) {
        $('#<% $td_id %>').draggable({
          containment: '.titlebox-content',
%#          revert:      'invalid',
          revert: true,
          revertDuration: 0,
        });
        $('#<% $td_id %>').data('ticketid', <% $draggable_ticketid %>);
        $('#<% $td_id %>').data('length',   <% $draggable_length * 60 %>);
        $('#<% $td_id %>').data('cells',    <% $cells %>);
        $('#<% $td_id %>').data('bgcolor',  "#<% $bgcolor %>");
%     }

    </SCRIPT>
% }
<%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>