summaryrefslogtreecommitdiff
path: root/httemplate/search/report_unapplied_cust_pay.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/search/report_unapplied_cust_pay.html')
-rwxr-xr-xhttemplate/search/report_unapplied_cust_pay.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/httemplate/search/report_unapplied_cust_pay.html b/httemplate/search/report_unapplied_cust_pay.html
deleted file mode 100755
index d2dd9e7..0000000
--- a/httemplate/search/report_unapplied_cust_pay.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<% include('/elements/header.html', 'Unapplied Payments Aging Summary' ) %>
-%# 'Prepaid Balance Aging Summary', #???
-
-<FORM NAME="OneTrueForm" ACTION="unapplied_cust_pay.html" METHOD="GET">
-
-<TABLE BGCOLOR="#cccccc" CELLSPACING=0>
-
- <TR>
- <TH CLASS="background" COLSPAN=2 ALIGN="left">
- <FONT SIZE="+1">Search options</FONT>
- </TH>
- </TR>
-
- <% include( '/elements/tr-select-agent.html', 'disable_empty'=>0 ) %>
-
- <% include( '/elements/tr-select-cust_main-status.html',
- 'label' => 'Customer Status'
- )
- %>
-
- <TR>
- <TD ALIGN="right">Customers</TD>
- <TD>
- <INPUT TYPE="radio" NAME="all_customers" VALUE="1" onClick="if (this.checked) { document.OneTrueForm.days.disabled=true; document.OneTrueForm.days.style.backgroundColor = '#dddddd'; } else { document.OneTrueForm.days.disabled=false; document.OneTrueForm.days.style.backgroundColor = '#ffffff'; }">All customers (even those without unapplied payments)<BR>
- <INPUT TYPE="radio" NAME="all_customers" VALUE="0" CHECKED onClick="if ( ! this.checked ) { document.OneTrueForm.days.disabled=true; document.OneTrueForm.days.style.backgroundColor = '#dddddd'; } else { document.OneTrueForm.days.disabled=false; document.OneTrueForm.days.style.backgroundColor = '#ffffff'; }">Customers with unapplied payments over <INPUT NAME="days" TYPE="text" SIZE=4 MAXLENGTH=3 VALUE="0"> days old
- </TD>
- </TR>
- <% include( '/elements/tr-input-date-field.html', {
- 'name' => 'as_of',
- 'value' => time,
- 'label' => 'As of date ',
- 'format' => FS::Conf->new->config('date_format') || '%m/%d/%Y',
- } ) %>
-
-</TABLE>
-
-<BR><INPUT TYPE="submit" VALUE="Get Report">
-</FORM>
-
-<% include('/elements/footer.html') %>
-
-<%init>
-
-die "access denied"
- unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
-
-</%init>