set appointment length, RT#33556
[freeside.git] / httemplate / elements / make_appointment.html
1 <& /elements/header-popup.html &>
2
3 % #XXX actually, the action needs to repace the top-level window with this
4 % #$params->{'action'} = $p. 'rt/Search/Schedule.html?'. $query;
5 <FORM NAME="appointment_form" METHOD="POST" ACTION="<% $p %>elements/schedule-appointment.html">
6
7 <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $cgi->param('custnum') |h %>">
8
9 % my @sched_item = qsearch('sched_item', { 'disabled' => '', });
10 % my @username = map $_->access_user->username, @sched_item;
11 % foreach my $username (@username) { 
12   <INPUT TYPE="hidden" NAME="username" VALUE="<% $username |h %>">
13 % }
14
15 Length: 
16 <SELECT NAME="LengthMin">
17 %  for ( my $hours = .5; $hours < 10.5; $hours += .5 ) {
18      <OPTION VALUE="<% $hours * 60 %>"><% $hours %> hour<% $hours > 1 ? 's' : '' %>
19 %  }
20 </SELECT>
21 <BR>
22 <BR>
23
24 <INPUT TYPE="submit" VALUE="Schedule appointment">
25
26 </FORM>
27
28 <& /elements/footer-popup.html &>
29 <%init>
30
31 #XXX '&pkgnum=$pkgnum";need to be for specific package/location, not just for a customer... default to active(/ordered) package in a pkg_class w/ticketing_queueid, otherwise, a popup?  (well, we're already a popup now) we're getting complicated like form-creat_ticket.html
32
33
34 </%init>