summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-02-06 00:05:07 -0800
committerIvan Kohler <ivan@freeside.biz>2014-02-06 00:05:07 -0800
commit6a38629bcb54a2ad9b8a5de6cac9f478bc4a7e66 (patch)
tree5cc078d43fb65284538db676b9e1d88333a262b5 /httemplate
parent9b3e40ffd129991d4567a3439eb2060c64cfa885 (diff)
add "Ordered" status to customer number/link on agent browse, RT#27442
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/browse/agent.cgi25
-rwxr-xr-xhttemplate/search/cust_main.cgi1
2 files changed, 26 insertions, 0 deletions
diff --git a/httemplate/browse/agent.cgi b/httemplate/browse/agent.cgi
index 6f2864106..25524323d 100755
--- a/httemplate/browse/agent.cgi
+++ b/httemplate/browse/agent.cgi
@@ -182,6 +182,26 @@ inactive
<TR>
<TH ALIGN="right" WIDTH="40%">
+ <FONT COLOR="#009999">
+ <% my $num_ordered = $agent->num_ordered_cust_main %>&nbsp;
+ </FONT>
+ </TH>
+
+ <TD>
+% if ( $num_ordered ) {
+
+ <A HREF="<% $cust_main_link %>&ordered=1">
+% }
+ordered
+% if ($num_ordered ) {
+</A>
+% }
+
+ <TD>
+ </TR>
+
+ <TR>
+ <TH ALIGN="right" WIDTH="40%">
<FONT COLOR="#00CC00">
<% my $num_active = $agent->num_active_cust_main %>&nbsp;
</FONT>
@@ -266,6 +286,11 @@ inactive
</TD>
</TR>
+ <!--ordered-->
+ <TR>
+ <TD>&nbsp;</TD>
+ </TR>
+
<TR>
<TH ALIGN="right" WIDTH="40%">
<FONT COLOR="#00CC00">
diff --git a/httemplate/search/cust_main.cgi b/httemplate/search/cust_main.cgi
index ee1dd8597..0b0dd4ffe 100755
--- a/httemplate/search/cust_main.cgi
+++ b/httemplate/search/cust_main.cgi
@@ -393,6 +393,7 @@ if ( $cgi->param('browse')
push @qual, FS::cust_main->cancel_sql if $cgi->param('cancelled');
push @qual, FS::cust_main->prospect_sql if $cgi->param('prospect');
+ push @qual, FS::cust_main->ordered_sql if $cgi->param('ordered');
push @qual, FS::cust_main->active_sql if $cgi->param('active');
push @qual, FS::cust_main->inactive_sql if $cgi->param('inactive');
push @qual, FS::cust_main->susp_sql if $cgi->param('suspended');