diff options
author | ivan <ivan> | 2003-12-27 08:23:38 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-12-27 08:23:38 +0000 |
commit | abc64a997eeacdc95988296889754d708aa97cad (patch) | |
tree | 80205cb7e73a099986967ce95910131f1ee47e77 /httemplate/search/cust_pkg.cgi | |
parent | 9617ce4b230c7dc56b4fa4a50d805ddaef87d090 (diff) |
package reports by agent
Diffstat (limited to 'httemplate/search/cust_pkg.cgi')
-rwxr-xr-x | httemplate/search/cust_pkg.cgi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 3c3e17864..c2f6272c4 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -35,6 +35,12 @@ if ( $cgi->param('magic') && $cgi->param('magic') eq 'bill' ) { $range .= ( $range ? 'AND ' : ' WHERE ' ). '( cancel IS NULL OR cancel = 0 )'; + if ( $cgi->param('agentnum') =~ /^(\d+)$/ and $1 ) { + $range .= ( $range ? 'AND ' : ' WHERE ' ). + "$1 = ( SELECT agentnum FROM cust_main". + " WHERE cust_main.custnum = cust_pkg.custnum )"; + } + #false laziness with below my $statement = "SELECT COUNT(*) FROM cust_pkg $range"; warn $statement; |