config to enable cust_pay report time selection, RT#22001
[freeside.git] / httemplate / search / elements / report_cust_pay_or_refund.html
1 <%doc>
2
3 Examples:
4
5   include( 'elements/report_cust_pay_or_refund.html',
6                'thing'          => 'pay',
7                'name_singular'  => 'payment',
8          )
9
10   include( 'elements/report_cust_pay_or_refund.html',
11                'thing'          => 'refund',
12                'name_singular'  => 'refund',
13          )
14
15 </%doc>
16 <& /elements/header.html, mt($title) &>
17
18 <FORM ACTION="<% $table %>.html" METHOD="GET">
19 <INPUT TYPE="hidden" NAME="magic" VALUE="_date">
20 <INPUT TYPE="hidden" NAME="unapplied" VALUE="<% $unapplied %>">
21
22 <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
23
24   <TR>
25     <TH CLASS="background" COLSPAN=2 ALIGN="left">
26       <FONT SIZE="+1"><% mt('Search options') |h %></FONT>
27     </TH>
28   </TR>
29
30   <TR>
31     <TD ALIGN="right"><% ucfirst(PL($name_singular)) %> of type: </TD>
32     <TD>
33       <SELECT NAME="payby" onChange="payby_changed(this)">
34         <OPTION VALUE=""><% mt('all') |h %></OPTION>
35         <OPTION VALUE="CARD"><% mt('credit card (all)') |h %></OPTION>
36         <OPTION VALUE="CARD-VisaMC"><% mt('credit card (Visa/MasterCard)') |h %></OPTION>
37         <OPTION VALUE="CARD-Amex"><% mt('credit card (American Express)') |h %></OPTION>
38         <OPTION VALUE="CARD-Discover"><% mt('credit card (Discover)') |h %></OPTION>
39         <OPTION VALUE="CARD-Maestro"><% mt('credit card (Maestro/Switch/Solo)') |h %></OPTION>
40         <OPTION VALUE="CHEK"><% mt('electronic check / ACH') |h %></OPTION>
41         <OPTION VALUE="BILL"><% mt('check') |h %></OPTION>
42         <OPTION VALUE="PREP"><% mt('prepaid card') |h %></OPTION>
43         <OPTION VALUE="CASH"><% mt('cash') |h %></OPTION>
44         <OPTION VALUE="WEST"><% mt('Western Union') |h %></OPTION>
45         <OPTION VALUE="MCRD"><% mt('manual credit card') |h %></OPTION>
46       </SELECT>
47     </TD>
48   </TR>
49
50   <SCRIPT TYPE="text/javascript">
51   
52     function payby_changed(what) {
53       if ( what.options[what.selectedIndex].value == 'BILL' ) {
54         document.getElementById('checkno_caption').style.color = '#000000';
55         what.form.payinfo.disabled = false;
56         what.form.payinfo.style.backgroundColor = '#ffffff';
57       } else {
58         document.getElementById('checkno_caption').style.color = '#bbbbbb';
59         what.form.payinfo.disabled = true;
60         what.form.payinfo.style.backgroundColor = '#dddddd';
61       }
62     }
63
64   </SCRIPT>
65
66   <TR>
67     <TD ALIGN="right"><FONT ID="checkno_caption" COLOR="#bbbbbb"><% mt('Check #:') |h %> </FONT></TD>
68     <TD>
69       <INPUT TYPE="text" NAME="payinfo" DISABLED STYLE="background-color: #dddddd">
70     </TD>
71   </TR>
72
73   <& /elements/tr-select-agent.html,
74                  'curr_value'    => scalar($cgi->param('agentnum')),
75                  'label'         => emt('for agent: '),
76                  'disable_empty' => 0,
77   &>
78
79   <& /elements/tr-select-user.html &>
80
81   <TR>
82     <TD ALIGN="right" VALIGN="center"><% mt('Payment') |h %></TD>
83     <TD>
84       <TABLE>
85         <& /elements/tr-input-beginning_ending.html,
86                       layout     => 'horiz',
87                       input_time => $conf->exists('report-cust_pay-select_time'),
88         &>
89       </TABLE>
90     </TD>
91   </TR>
92
93 % if ( $void ) {
94     <TR>
95       <TD ALIGN="right" VALIGN="center"><% mt('Voided') |h %></TD>
96       <TD>
97         <TABLE>
98           <& /elements/tr-input-beginning_ending.html,
99                         prefix => 'void',
100                         layout => 'horiz',
101           &>
102         </TABLE>
103       </TD>
104     </TR>
105 % }
106
107   <& /elements/tr-input-lessthan_greaterthan.html,
108                 'label' => emt('Amount'),
109                 'field' => 'paid',
110   &>
111
112 % if ( $table eq 'cust_pay' ) { 
113   <& /elements/tr-checkbox.html,
114                 'label' => emt('Include tax names'),
115                 'field' => 'tax_names',
116                 'value' => 1,
117   &>
118 % }
119
120 </TABLE>
121
122 <BR>
123 <INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
124
125 </FORM>
126
127 <& /elements/footer.html &>
128 <%init>
129
130 my %opt = @_;
131 my $table = 'cust_'.$opt{'thing'};
132 my $name_singular = $opt{'name_singular'};
133
134 die "access denied"
135   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
136
137 my $conf = new FS::Conf;
138
139 my $void = $cgi->param('void') ? 1 : 0;
140 my $unapplied = $cgi->param('unapplied') ? 1 : 0;
141
142 my $title = $void ? "Voided $name_singular report" :
143             $unapplied ? "Unapplied $name_singular report" :
144             "\u$name_singular report" ;
145 $table .= '_void' if $void;
146
147 </%init>