X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Fcdr.html;h=5e917db2ef3eba2e67869f517cbf833c990ebc30;hb=b6dbe0f12dbbe4ea5209367f905f937789b5b607;hp=cefc0fe506b163489078a06b9bcfc6f8ed8d194d;hpb=f3e9978acca77b92adcfc24632b21bd39d4cae82;p=freeside.git diff --git a/httemplate/search/cdr.html b/httemplate/search/cdr.html index cefc0fe50..5e917db2e 100644 --- a/httemplate/search/cdr.html +++ b/httemplate/search/cdr.html @@ -80,15 +80,21 @@ my @qsearch = @search; # freesidestatus ### -if ( $cgi->param('freesidestatus') eq 'NULL' ) { +my $status = $cgi->param('freesidestatus'); +if ( $status eq 'NULL' ) { $title = "Unprocessed $title"; $hashref->{'freesidestatus'} = ''; # Record.pm will take care of it push @search, "( freesidestatus IS NULL OR freesidestatus = '' )"; -} elsif ( $cgi->param('freesidestatus') =~ /^([\w ]+)$/ ) { - - $title = "Processed $title"; +} elsif ( $status =~ /^([\w ]+)$/ ) { + + if ( $status eq 'done' ) { + $title = "Processed $title"; + } + elsif ( $status eq 'failed' ) { + $title = "Skipped $title"; + } $hashref->{'freesidestatus'} = $1; push @search, "freesidestatus = '$1'"; @@ -344,7 +350,7 @@ unshift @fields, sub { qq!!; }; -my @links = ( '', map { exists($links{$_}) ? $links{$_} : '' } @fields ); +my @links = ( map { exists($links{$_}) ? $links{$_} : '' } @fields ); ###