[freeside-commits] freeside/fs_selfservice/FS-SelfService/cgi myaccount.html, 1.6, 1.7
Jeff Finucane,420,,
jeff at wavetail.420.am
Thu Aug 16 06:40:48 PDT 2007
Update of /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi
In directory wavetail:/tmp/cvs-serv28263/fs_selfservice/FS-SelfService/cgi
Modified Files:
myaccount.html
Log Message:
support hours 'usage' tracking for our own internal use (#1733)
Index: myaccount.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/myaccount.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- myaccount.html 8 Jun 2005 09:03:06 -0000 1.6
+++ myaccount.html 16 Aug 2007 13:40:46 -0000 1.7
@@ -36,6 +36,41 @@
}
%>
+<%=
+ if ( defined($support_time) ) {
+ $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
+ '<TR><TH BGCOLOR="#ff6666">Support Time Remaining</TH></TR>'.
+ "<TR><TD>$support_time</TD></TR><BR><BR>";
+ }
+%>
+
+<%=
+ if ( @tickets ) {
+ $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
+ '<TR><TH BGCOLOR="#ff6666" COLSPAN=5>Open Tickets</TH></TR>'.
+ '<TR><TH>#</TH><TH>Subject</TH><TH>Priority</TH><TH>Queue</TH>'.
+ '<TH>Status</TH></TR>';
+ my $col1 = "ffffff";
+ my $col2 = "dddddd";
+ my $col = $col1;
+
+ foreach my $ticket ( @tickets ) {
+ my $td = qq!<TD BGCOLOR="#$col">!;
+ $OUT .=
+ "<TR>$td". $ticket->{'id'}. "</TD>".
+ $td. $ticket->{'subject'}. "</TD>".
+ $td. $ticket->{'priority'}. "</TD>".
+ $td. $ticket->{'name'}. "</TD>".
+ $td. $ticket->{'status'}. "</TD>".
+ '</TR>';
+ $col = $col eq $col1 ? $col2 : $col1;
+ }
+ $OUT .= '</TABLE>';
+ } else {
+ $OUT .= '';
+ }
+%>
+
</TD></TR></TABLE>
<HR>
<FONT SIZE="-2">powered by <a href="http://www.sisd.com/freeside">freeside</a></FONT>
More information about the freeside-commits
mailing list