summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/invoices.html
diff options
context:
space:
mode:
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/invoices.html')
-rw-r--r--fs_selfservice/FS-SelfService/cgi/invoices.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/invoices.html b/fs_selfservice/FS-SelfService/cgi/invoices.html
deleted file mode 100644
index c4eece3..0000000
--- a/fs_selfservice/FS-SelfService/cgi/invoices.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<%= $url = "$selfurl?session=$session_id;action="; ''; %>
-<%= include('header', 'All Invoices') %>
-
-<%=
- if ( @invoices ) {
- $OUT .= '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR="#eeeeee">'.
- '<TR><TH BGCOLOR="#ff6666" COLSPAN=4>All Invoices</TH></TR>';
- my $col1 = "ffffff";
- my $col2 = "dddddd";
- my $col = $col1;
-
- foreach my $invoice ( @invoices ) {
- 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>".
- "$td$a". $invoice->{'date'}. "</A></TD>$td</TD>".
- '</TR>';
- $col = $col eq $col1 ? $col2 : $col1;
- }
- $OUT .= '</TABLE><BR>';
- } else {
- $OUT .= 'You have no invoices.<BR><BR>';
- }
-%>
-
-<%= include('footer') %>