summaryrefslogtreecommitdiff
path: root/httemplate/search/report_prepaid_income.html
diff options
context:
space:
mode:
authorcvs2git <cvs2git>2010-12-27 00:04:45 +0000
committercvs2git <cvs2git>2010-12-27 00:04:45 +0000
commitc82d349f864e6bd9f96fd1156903bc1f7193a203 (patch)
treee117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/search/report_prepaid_income.html
parent74e058c8a010ef6feb539248a550d0bb169c1e94 (diff)
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/search/report_prepaid_income.html')
-rw-r--r--httemplate/search/report_prepaid_income.html64
1 files changed, 0 insertions, 64 deletions
diff --git a/httemplate/search/report_prepaid_income.html b/httemplate/search/report_prepaid_income.html
deleted file mode 100644
index 061b24c..0000000
--- a/httemplate/search/report_prepaid_income.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<% include('/elements/header.html','Prepaid Income (Unearned Revenue) Report')%>
-
-<% include('/elements/init_calendar.html') %>
-
-<FORM ACTION="report_prepaid_income.cgi" METHOD="GET">
-
-<TABLE BGCOLOR="#cccccc" CELLSPACING=0>
-
- <TR>
- <TH CLASS="background" COLSPAN=2 ALIGN="left">
- <FONT SIZE="+1">Search options</FONT>
- </TH>
- </TR>
-
- <TR>
- <TD>As of </TD>
- <TD>
- <INPUT TYPE="text" NAME="date" ID="date_text" VALUE="now">
- <IMG SRC="../images/calendar.png" ID="date_button" STYLE="cursor: pointer" TITLE="Select date">
- </TD>
- </TR>
- <TR>
- <TD>
- </TD>
- <TD><FONT SIZE="-1"><i>m/d/y</i></FONT></TD>
- </TR>
-
- <TR>
- <TD COLSPAN=2>&nbsp;</TD>
- </TR>
-
- <% include( '/elements/tr-select-agent.html', 'disable_empty'=>0 ) %>
-
- <TR>
- <TD COLSPAN=2>&nbsp;</TD>
- </TR>
-
- <TR>
- <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" VALUE="Generate report"></TD>
- </TR>
-
-</TABLE>
-
-<SCRIPT TYPE="text/javascript">
- Calendar.setup({
- inputField: "date_text",
- ifFormat: "<% $date_format %>",
- button: "date_button",
- align: "BR"
- });
-</SCRIPT>
-
-</FORM>
-
-<% include('/elements/footer.html') %>
-<%init>
-
-die "access denied"
- unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
-
-my $conf = new FS::Conf;
-my $date_format = $conf->config('date_format') || '%m/%d/%Y';
-
-</%init>