diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-09-26 12:03:08 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-09-26 12:03:08 -0400 |
commit | ee2fb1a8744b88d699517ed636ab3cb1b99c53f0 (patch) | |
tree | 31f3ce55f3d325ee606c1501318bc6bbad6d34e3 /httemplate/search/report_cust_timespan.html | |
parent | 3fda01cc7d4de589d93bf0219e2a959200da7e33 (diff) |
RT# 77160 - created new customer time span report
Diffstat (limited to 'httemplate/search/report_cust_timespan.html')
-rw-r--r-- | httemplate/search/report_cust_timespan.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/httemplate/search/report_cust_timespan.html b/httemplate/search/report_cust_timespan.html new file mode 100644 index 000000000..4ff3bb892 --- /dev/null +++ b/httemplate/search/report_cust_timespan.html @@ -0,0 +1,42 @@ +<& /elements/header.html, mt($title) &> + +<FORM ACTION="cust_timespan.html" METHOD="GET"> + +<TABLE BGCOLOR="#cccccc" CELLSPACING=0> + + <& /elements/tr-select-agent.html, + 'curr_value' => scalar( $cgi->param('agentnum') ), + 'label' => emt('Contacts for agent: '), + 'disable_empty' => 0, + &> + + <& /elements/tr-select.html, + 'label' => 'Customer status', + 'field' => 'cust_status', + 'options' => [ 'cancelled', 'suspended'], + 'labels' => { 'cancelled' => 'Cancelled Customers', + 'suspended' => 'Suspended Customers', + }, + 'curr_value' => scalar( $cgi->param('cust_status') ), + &> + +</FORM> + +</TABLE> + +<BR> +<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>"> + +</FORM> + +<& /elements/footer.html &> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('List contacts'); + +my $conf = new FS::Conf; + +my $title = 'Customer Timespan Report'; + +</%init>
\ No newline at end of file |