diff options
author | ivan <ivan> | 2005-03-04 12:34:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-03-04 12:34:56 +0000 |
commit | b1fc20ef3b68a8536163fbb17c57bca15555f3c4 (patch) | |
tree | 389d9d91cd4e855a113c8825adac926ec1f71dcb /httemplate/search/report_cust_pay.html | |
parent | 8f11e2a03067829dc5f8cd6ae7fa0e3f249d61c1 (diff) |
add agent selection to payment and credit reports, add link to agent browse, closes: Bug#1105
Diffstat (limited to 'httemplate/search/report_cust_pay.html')
-rw-r--r-- | httemplate/search/report_cust_pay.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/httemplate/search/report_cust_pay.html b/httemplate/search/report_cust_pay.html index 95198c7b2..d1d4cb983 100644 --- a/httemplate/search/report_cust_pay.html +++ b/httemplate/search/report_cust_pay.html @@ -25,6 +25,16 @@ </TD> </TR> <TR> + <TD ALIGN="right">for agent: </TD> + <TD><SELECT NAME="agentnum"> + <OPTION VALUE="">all</OPTION> + <% foreach my $agent ( qsearch('agent', { disabled=>'' } ) ) { %> + <OPTION VALUE="<%= $agent->agentnum %>"<%= $cgi->param('agentnum') == $agent->agentnum ? ' SELECTED' : '' %>><%= $agent->agent %> + <% } %> + </SELECT> + </TD> + </TR> + <TR> <TD ALIGN="right">From: </TD> <TD><INPUT TYPE="text" NAME="beginning" ID="beginning_text" VALUE="" SIZE=11 MAXLENGTH=10> <IMG SRC="../images/calendar.png" ID="beginning_button" STYLE="cursor: pointer" TITLE="Select date"><BR><i>m/d/y</i></TD> <SCRIPT TYPE="text/javascript"> |