diff options
author | Mark Wells <mark@freeside.biz> | 2015-03-13 15:24:09 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-03-13 15:24:09 -0700 |
commit | ed741d82e6ef8b2c66985f6b54d5cb26e0a70acb (patch) | |
tree | c22fd88a977c369da77cfccb78172d747c49a56d /httemplate/search/cust_credit.html | |
parent | 8e50b6f6fbaa9d732a371114c0dfc95c326cb890 (diff) |
restructure agent commission reporting, #23348
Diffstat (limited to 'httemplate/search/cust_credit.html')
-rwxr-xr-x | httemplate/search/cust_credit.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/httemplate/search/cust_credit.html b/httemplate/search/cust_credit.html index 18908fd1f..7738494db 100755 --- a/httemplate/search/cust_credit.html +++ b/httemplate/search/cust_credit.html @@ -106,6 +106,11 @@ if ( $cgi->param('commission_salesnum') =~ /^(\d+)$/ ) { push @search, "commission_salesnum = $1"; } +# commission agentnum +if ( $cgi->param('commission_agentnum') =~ /^(\d+)$/ ) { + push @search, "commission_agentnum = $1"; +} + # commission_classnum if ( grep { $_ eq 'commission_classnum' } $cgi->param ) { $cgi->param('commission_classnum') =~ /^(\d*)$/ or die 'guru meditation #13'; |