blob: d080e2439e4a504018a61ca332ac9cd061a149a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
% if ( ! $show ) {
<INPUT TYPE="hidden" NAME="<% $opt{'element_name'} || $opt{'field'} || 'cdrbatchnum' %>" VALUE="__ALL__">
% } else {
<TR>
<TD ALIGN="right"><% $opt{'cdrbatch'} || 'CDR Batch: ' %></TD>
<TD>
<% include( '/elements/select-cdrbatch.html', 'curr_value' => $selected_cdrbatch, %opt ) %>
</TD>
</TR>
% }
<%init>
my( %opt ) = @_;
my $conf = new FS::Conf;
my $selected_cdrbatch = $opt{'curr_value'}; # || $opt{'value'} necessary?
$opt{'records'} = delete $opt{'cdr_batch'}
if $opt{'cdr_batch'};
my $sth = dbh->prepare('SELECT COUNT(*) FROM cdr_batch LIMIT 1')
or die dbh->errstr;
$sth->execute or die $sth->errstr;
my $show = $sth->fetchrow_arrayref->[0];
</%init>
|