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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<% include('/elements/header.html', $title ) %>
<FORM ACTION="cust_bill.html" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="_date">
<INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>">
<TABLE BGCOLOR="#cccccc" CELLSPACING=0
% unless ( $custnum ) {
<% include( '/elements/tr-select-agent.html',
'curr_value' => scalar( $cgi->param('agentnum') ),
'label' => 'Invoices for agent: ',
'disable_empty' => 0,
)
%>
% }
<% include( '/elements/tr-input-beginning_ending.html' ) %>
<% include( '/elements/tr-input-lessthan_greaterthan.html',
label => 'Charged',
field => 'charged',
)
%>
<% include( '/elements/tr-input-lessthan_greaterthan.html',
label => 'Owed',
field => 'owed',
)
%>
% if ( $cust_main ) {
<INPUT TYPE="hidden" NAME="payby" VALUE="<% $cust_main->payby %>">
% } else {
<% include( '/elements/tr-select-payby.html',
label => 'Payment method:',
payby_type => 'cust',
multiple => 1,
all_selected => 1,
)
%>
% }
<TR>
<TD ALIGN="right"><INPUT TYPE="checkbox" NAME="open" VALUE="1" CHECKED></TD>
<TD>Show only open invoices</TD>
</TR>
% unless ( $custnum ) {
<TR>
<TD ALIGN="right"><INPUT TYPE="checkbox" NAME="newest_percust" VALUE="1"></TD>
<TD>Show only the single most recent invoice per-customer</TD>
</TR>
% }
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Get Report">
</FORM>
<% include('/elements/footer.html') %>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('List invoices');
my $title = 'Invoice Report';
#false laziness w/report_cust_pkg.html
my $custnum = '';
my $cust_main = '';
if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
$custnum = $1;
$cust_main = qsearchs({
'table' => 'cust_main',
'hashref' => { 'custnum' => $custnum },
'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
}) or die "unknown custnum $custnum";
$title .= ': '. $cust_main->name;
}
</%init>
|