X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fselect-cdrbatch.html;fp=httemplate%2Felements%2Fselect-cdrbatch.html;h=866ba25161c6838b0155e3742a298cd9458b8797;hb=c47123a101c99b35c3c7b1be5b003b773ae00e06;hp=0000000000000000000000000000000000000000;hpb=d7b220cb7443a6d55723e4b5b9d483504efe9250;p=freeside.git diff --git a/httemplate/elements/select-cdrbatch.html b/httemplate/elements/select-cdrbatch.html new file mode 100644 index 000000000..866ba2516 --- /dev/null +++ b/httemplate/elements/select-cdrbatch.html @@ -0,0 +1,38 @@ +% if ( scalar(@{ $opt{'cdrbatches'} }) ) { + + + +% } else { + + + +% } + +<%init> + +my %opt = @_; +my $selected_cdrbatch = $opt{'curr_value'}; # || $opt{'value'} necessary? + +my $conf = new FS::Conf; + +unless ( $opt{'cdrbatches'} ) { + + my $sth = dbh->prepare('SELECT DISTINCT cdrbatch FROM cdr') + or die dbh->errstr; + $sth->execute or die $sth->errstr; + my %cdrbatches = map { $_->[0] => 1 } @{$sth->fetchall_arrayref}; + @{ $opt{'cdrbatches'} } = grep $_, keys %cdrbatches; + +} + + +