blob: ccde299e968818daf351c9c737494478f08e9cd4 (
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
54
55
56
57
|
<%doc>
Display date selector for the future_autobill.html report
</%doc>
<% include('/elements/header.html', $report_title ) %>
% if ( FS::TaxEngine->new->info->{batch} ) {
<div style="font-color: red">
NOTE: This report is disabled due to tax engine configuration
</div>
% } else {
<FORM ACTION="future_autobill.html" METHOD="GET">
<TABLE>
<& /elements/tr-input-date-field.html,
{
name => 'target_date',
value => $target_date,
label => emt('Target billing date').': ',
required => 1
}
&>
<% include('/elements/tr-select-agent.html',
'label' => 'For agent: ',
'disable_empty' => 0,
)
%>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
</FORM>
% }
<% include('/elements/footer.html') %>
<%init>
use FS::cust_payby;
use FS::CurrentUser;
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
my $target_date = DateTime->now->add(days => 1)->mdy('/');
my $report_title = FS::cust_payby->future_autobill_report_title;
</%init>
|