diff options
author | David Houghton <houghton@freeside.biz> | 2014-09-10 12:09:40 -0400 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-09-11 15:57:11 -0700 |
commit | 6039166baf177b99594832363a955d6d70b4037a (patch) | |
tree | 6eaeaabdea95e21204a9ed85f693829e428952da | |
parent | ab6e4f9b42a6e7fe2031ad5f2443ef6a3584be1e (diff) |
ticket: 27309; add accountcode
I tested this as best I could. I worked with my fake data. I accounted
for ' and blank lines, assuming terminal whitespace was irrelevant.
-rw-r--r-- | httemplate/search/cdr.html | 19 | ||||
-rw-r--r-- | httemplate/search/report_cdr.html | 5 |
2 files changed, 24 insertions, 0 deletions
diff --git a/httemplate/search/cdr.html b/httemplate/search/cdr.html index ca303d386..10b386383 100644 --- a/httemplate/search/cdr.html +++ b/httemplate/search/cdr.html @@ -258,6 +258,25 @@ if ( $cgi->param('acctid') =~ /\d/ ) { } ### +# accountcode +### + +if ( $cgi->param('accountcode') =~ /\S/ ) { + my $accountcode = $cgi->param('accountcode'); + my @accountcode = map { + ( my $v = $_ ) =~ s/^\s+|\s+$//g; + if ( $v =~ /'/ ) { $v =~ s/'/\\'/g; $v = "E'$v'" } + elsif ( length $v ) { $v = "'$v'" } + length $v ? $v : () + } grep /\S/, split /\R/, $accountcode; + if (@accountcode) { + my $search = 'accountcode IN ( ' . join( ',', @accountcode ) . ' )'; + push @qsearch, $search; + push @search, $search; + } +} + +### # finish it up ### diff --git a/httemplate/search/report_cdr.html b/httemplate/search/report_cdr.html index 0e1693b9c..fe840ea0b 100644 --- a/httemplate/search/report_cdr.html +++ b/httemplate/search/report_cdr.html @@ -148,6 +148,11 @@ </TR> <TR> + <TD ALIGN="right">Acct Code (one per-line):</TD> + <TD><TEXTAREA NAME="accountcode"></TEXTAREA></TD> + </TR> + + <TR> <TH CLASS="background" COLSPAN=2> </TH> </TR> |