adding export to read mailbox status information, RT#15987
[freeside.git] / httemplate / graph / report_money_time_daily.html
1 <% include('/elements/header.html', 'Daily Sales, Credits and Receipts Summary' ) %>
2
3 <FORM ACTION="money_time_daily.cgi" METHOD="GET">
4
5 <TABLE>
6
7 <% include( '/elements/tr-input-beginning_ending.html',
8                 'datesrequired' => 1,
9                 'from' => time2str('%m/%d/%Y',$from),
10                 'to' => time2str('%m/%d/%Y',time),
11             ) 
12 %>
13
14 <% include('/elements/tr-select-agent.html',
15              'label'         => 'For agent: ',
16              'disable_empty' => 0,
17           )
18 %>
19
20 </TABLE>
21
22 <BR><INPUT TYPE="submit" VALUE="Display">
23 </FORM>
24
25 <% include('/elements/footer.html') %>
26 <%init>
27
28 my $from = time - 30*86400;
29
30 die "access denied"
31   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
32
33 </%init>