Merge branch 'master' of git.freeside.biz:/home/git/freeside
[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 <% include('/elements/tr-select-part_referral.html',
28              'label'         => 'Advertising source ',
29              'disable_empty' => 0,
30              'empty_label'   => 'all',
31           )
32 %>
33
34 <TR>
35   <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="12mo" VALUE="1"></TD>
36   <TD>Show 12 month totals instead of monthly values</TD>
37 </TR>
38
39 </TABLE>
40
41 <BR><INPUT TYPE="submit" VALUE="Display">
42 </FORM>
43
44 <% include('/elements/footer.html') %>
45 <%init>
46
47 die "access denied"
48   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
49
50 </%init>