diff options
| author | levinse <levinse> | 2011-06-23 00:02:45 +0000 | 
|---|---|---|
| committer | levinse <levinse> | 2011-06-23 00:02:45 +0000 | 
| commit | f3e9978acca77b92adcfc24632b21bd39d4cae82 (patch) | |
| tree | c4b1b7858bed46e3e4f5c3b082af49eb71f6ec61 | |
| parent | 5666362a5167aa0dbdcb78cd45f1426b31e8b8c7 (diff) | |
CDR report: add cdrtypenum search criteria, RT13402
| -rw-r--r-- | httemplate/search/cdr.html | 13 | ||||
| -rw-r--r-- | httemplate/search/report_cdr.html | 8 | 
2 files changed, 21 insertions, 0 deletions
| diff --git a/httemplate/search/cdr.html b/httemplate/search/cdr.html index c77fc352f..cefc0fe50 100644 --- a/httemplate/search/cdr.html +++ b/httemplate/search/cdr.html @@ -95,6 +95,19 @@ if ( $cgi->param('freesidestatus') eq 'NULL' ) {  }  ### +# cdrtypenum +### + +if ( $cgi->param('cdrtypenum') =~ /^(\d+)$/ ) { +    $hashref->{'cdrtypenum'} = $1; +    push @search, "cdrtypenum = $1"; +} +elsif ( $cgi->param('cdrtypenum') eq 'none' ) { +    $hashref->{'cdrtypenum'} = ''; +    push @search, "cdrtypenum is null"; +} + +###  # termpartNstatus  ### diff --git a/httemplate/search/report_cdr.html b/httemplate/search/report_cdr.html index 11049ac93..07299d5dc 100644 --- a/httemplate/search/report_cdr.html +++ b/httemplate/search/report_cdr.html @@ -46,6 +46,14 @@  %   }  % #} +  <% include('/elements/tr-select-table.html', +            field   => 'cdrtypenum', +            label   => 'CDR Type', +            table   => 'cdr_type', +            name_col    => 'cdrtypename', +            post_options => [ 'none', 'none' ] ) +  %> +    <% include ( '/elements/tr-input-beginning_ending.html' ) %>    <TR> | 
