fix unapplied payment report, RT#73048, fallout from #25944
[freeside.git] / httemplate / search / report_prospect_main.html
1 <% include('/elements/header.html', 'Prospect Report' ) %>
2
3 <FORM ACTION="prospect_main.html" METHOD="GET">
4
5   <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
6
7     <TR>
8       <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1">Search options</FONT></TH>
9     </TR>
10
11     <% include( '/elements/tr-select-agent.html',
12                   'curr_value'    => scalar($cgi->param('agentnum')),
13                   'disable_empty' => 0,
14                )
15     %>
16
17   </TABLE>
18
19 <BR>
20 <INPUT TYPE="submit" VALUE="Get Report">
21
22 </FORM>
23
24 <% include('/elements/footer.html') %>
25 <%init>
26
27 die "access denied"
28   unless $FS::CurrentUser::CurrentUser->access_right('List prospects');
29
30 my $conf = new FS::Conf;
31
32 </%init>