[freeside-commits] freeside/fs_selfservice/FS-SelfService/cgi myaccount.html, 1.22, 1.23 invoices.html, 1.1, 1.2 view_support_details.html, 1.3, 1.4

Ivan,,, ivan at wavetail.420.am
Tue Jun 28 18:42:51 PDT 2011


Update of /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi
In directory wavetail.420.am:/tmp/cvs-serv6117

Modified Files:
	myaccount.html invoices.html view_support_details.html 
Log Message:
self-service skinning improvements, RT#13199

Index: invoices.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/invoices.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- invoices.html	14 Dec 2010 23:27:19 -0000	1.1
+++ invoices.html	29 Jun 2011 01:42:49 -0000	1.2
@@ -13,7 +13,7 @@
       my $td = qq!<TD BGCOLOR="#$col">!;
       my $a=qq!<A HREF="${url}view_invoice;invnum=!. $invoice->{'invnum'}. '">';
       $OUT .=
-        "<TR>$td${a}Invoice #". $invoice->{'invnum'}. "</A></TD>$td</TD>".
+        "<TR>$td${a}Invoice #". $invoice->{'invnum'}. "</A></TD>$td&nbsp;</TD>".
         "$td$a". $invoice->{'date'}. "</A></TD>$td</TD>".
         '</TR>';
       $col = $col eq $col1 ? $col2 : $col1;

Index: myaccount.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/myaccount.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -w -d -r1.22 -r1.23
--- myaccount.html	27 Jun 2011 07:19:18 -0000	1.22
+++ myaccount.html	29 Jun 2011 01:42:49 -0000	1.23
@@ -59,7 +59,7 @@
   if ( @support_services ) {
     $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
             '<TR><TH BGCOLOR="#ff6666" COLSPAN="3">Support Time Remaining</TH>'.
-            '</TR><TR><TH ALIGN="left">#</TH><TH>Package</TH>'.
+            '</TR><TR><TH>Package</TH><TH></TH>'.
             '<TH>Time Remaining</TH></TR>';
     my $col1 = "ffffff";
     my $col2 = "dddddd";
@@ -70,8 +70,9 @@
       my $a = qq!<A HREF="${url}view_support_details;svcnum=!.
               $support->{'svcnum'}. '">';
       $OUT .=
-        "<TR>$td$a". $support->{'pkgnum'}. "</A></TD>".
+        "<TR>".
         $td.$a. $support->{'pkg'}. "</A></TD>".
+          $td.'&nbsp;</TD>'.
         $td.$a. $support->{'time'}. "</A></TD>".
         '</TR>';
       $col = $col eq $col1 ? $col2 : $col1;
@@ -82,6 +83,11 @@
   }
 %>
 
-<%= include('ticket_summary') if @tickets %> 
+<%= if ( @tickets) {
+      $OUT .= include('ticket_summary');
+    } else {
+      $OUT .= '';
+    }
+%>
 
 <%= include('footer') %>

Index: view_support_details.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/fs_selfservice/FS-SelfService/cgi/view_support_details.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -d -r1.3 -r1.4
--- view_support_details.html	1 Feb 2009 12:28:45 -0000	1.3
+++ view_support_details.html	29 Jun 2011 01:42:49 -0000	1.4
@@ -1,8 +1,5 @@
-<HTML><HEAD><TITLE>MyAccount</TITLE></HEAD>
-<BODY BGCOLOR="#eeeeee"><FONT SIZE=5>MyAccount</FONT><BR><BR>
 <%= $url = "$selfurl?session=$session_id;action="; ''; %>
-<%= include('myaccount_menu') %>
-<TD VALIGN="top">
+<%= include('header', 'Usage details') %>
 
 <FONT SIZE=4>Support usage details for
 <%= Date::Format::time2str('%b&nbsp;%o&nbsp;%Y', $beginning) %> -
@@ -74,5 +71,4 @@
 </TABLE>
 <BR>
 
-</TD></TR></TABLE>
 <%= include('footer') %>



More information about the freeside-commits mailing list