adding export to read mailbox status information, RT#15987
[freeside.git] / httemplate / graph / report_money_time.html
1 <% include('/elements/header.html', 'Sales, Credits and Receipts Summary' ) %>
2
3 <FORM ACTION="money_time.cgi" METHOD="GET">
4
5 <!--
6 <INPUT TYPE="checkbox" NAME="ar">
7   Accounts receivable (invoices - applied credits)<BR>
8 <INPUT TYPE="checkbox" NAME="charged">
9   Just Invoices<BR>
10 <INPUT TYPE="checkbox" NAME="defer">
11   Accounts receivable, with deferred revenue (invoices - applied credits, with charges for annual/semi-annual/quarterly/etc. services deferred over applicable time period) (there has got to be a shorter description for this)<BR>
12 <INPUT TYPE="checkbox" NAME="cash">
13   Cashflow (payments - refunds)<BR>
14 <BR>
15 -->
16
17 <TABLE>
18
19 <% include('/elements/tr-select-from_to.html' ) %>
20
21 <% include('/elements/tr-select-agent.html',
22              'label'         => 'For agent: ',
23              'disable_empty' => 0,
24           )
25 %>
26
27 <TR>
28   <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="12mo" VALUE="1"></TD>
29   <TD>Show 12 month totals instead of monthly values</TD>
30 </TR>
31
32 </TABLE>
33
34 <BR><INPUT TYPE="submit" VALUE="Display">
35 </FORM>
36
37 <% include('/elements/footer.html') %>
38 <%init>
39
40 die "access denied"
41   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
42
43 </%init>