blob: 0490f43237129cad3a96fbb5b491b6b84faf8910 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<% include('/elements/header.html', 'Credit report' ) %>
<FORM ACTION="cust_credit.html" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="_date">
<TABLE>
<TR>
<TD ALIGN="right">Credits by employee: </TD>
<TD>
<SELECT NAME="otaker">
<OPTION VALUE="">all</OPTION>
% foreach my $otaker ( @otakers ) {
<OPTION VALUE="<% $otaker %>"><% $otaker %></OPTION>
% }
</SELECT>
</TD>
</TR>
<% include( '/elements/tr-select-agent.html',
'curr_value' => scalar( $cgi->param('agentnum') ),
'label' => 'for agent: ',
)
%>
<% include( '/elements/tr-input-beginning_ending.html' ) %>
<% include( '/elements/tr-input-lessthan_greaterthan.html',
'label' => 'Amount',
'field' => 'amount',
)
%>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Get Report">
</FORM>
<% include('/elements/footer.html') %>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
my $sth = dbh->prepare("SELECT DISTINCT otaker FROM cust_credit")
or die dbh->errstr;
$sth->execute or die $sth->errstr;
my @otakers = map { $_->[0] } @{$sth->fetchall_arrayref};
</%init>
|