<%doc> Display pre-report page for the Future Auto Bill Transactions report Report runs in the queue. Once the report is generated, user is redirected to the report results. <% include('/elements/header.html', $report_title ) %> % if ( FS::TaxEngine->new->info->{batch} ) {
NOTE: This report is disabled due to tax engine configuration
% } else {
<& /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, ) %>

<% include( '/elements/progress-init.html', 'future_autobill', [ qw( agentnum target_date ) ], 'report_future_autobill-queued_job.html', ) %> % } <% 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;