From: ivan Date: Mon, 6 Jul 2009 23:14:14 +0000 (+0000) Subject: search cdr by acctid X-Git-Tag: root_of_svc_elec_features~1059 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=1080ae07385ed313d3a72c12869d7d0b84136504 search cdr by acctid --- diff --git a/httemplate/search/cdr.html b/httemplate/search/cdr.html index ceee6f2fd..d1f68c5c6 100644 --- a/httemplate/search/cdr.html +++ b/httemplate/search/cdr.html @@ -194,6 +194,23 @@ if ( $cgi->param('cdrbatch') ne '__ALL__' ) { } ### +# acctid +### + +if ( $cgi->param('acctid') =~ /\d/ ) { + my $acctid = $cgi->param('acctid'); + $acctid =~ s/\r\n/\n/g; #browsers? + my @acctid = map { /^\s*(\d+)\s*$/ or die "guru meditation #4"; $1; } + grep { /^\s*(\d+)\s*$/ } + split(/\n/, $acctid); + if ( @acctid ) { + my $search = 'acctid IN ( '. join(',', @acctid). ' )'; + push @qsearch, $search; + push @search, $search; + } +} + +### # finish it up ### diff --git a/httemplate/search/report_cdr.html b/httemplate/search/report_cdr.html index c5f728c87..f3ad1e69f 100644 --- a/httemplate/search/report_cdr.html +++ b/httemplate/search/report_cdr.html @@ -84,6 +84,11 @@ <% include( '/elements/tr-select-cdrbatch.html' ) %> + Acct ID (one per-line): + + + +