disable old no_censustract and with_geocode search options and move to cust_pkg searc...
[freeside.git] / httemplate / search / report_cust_main.html
1 <& /elements/header.html, mt('Customer Report') &>
2
3 <FORM ACTION="cust_main.html" METHOD="GET">
4 <INPUT TYPE="hidden" NAME="magic" VALUE="bill">
5
6   <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
7
8     <TR>
9       <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1"><% mt('Search options') |h %></FONT></TH>
10     </TR>
11
12     <& /elements/tr-select-agent.html,
13                   'curr_value'    => scalar($cgi->param('agentnum')),
14                   'disable_empty' => 0,
15     &>
16
17     <& /elements/tr-select-sales.html,
18                   'curr_value'    => scalar($cgi->param('salesnum')),
19                   'pre_options'   => [ '' => 'all',
20                                        0  => '(none)', ],
21                   'disable_empty' => 1,
22     &>
23
24     <& /elements/tr-select-cust_main-status.html,
25                   'label' => emt('Status'),
26     &>
27
28     <& /elements/tr-select-cust_class.html,
29                   'label'        => emt('Class'),
30                   'multiple'     => 1,
31                   'pre_options'  => [ '' => emt('(none)') ],
32                   'all_selected' => 1,
33     &>
34
35     <& /elements/tr-select-part_referral.html,
36                   'label'        => emt('Advertising Source'),
37                   'multiple'     => 1,
38                   #no, causes customers with disabled ones to disappear
39                   #'all_selected' => 1,
40     &>
41
42     <TR>
43       <TD ALIGN="right" VALIGN="center"><% mt('Address') |h %></TD>
44       <TD><INPUT TYPE="text" NAME="address" SIZE=54></TD>
45     </TR>
46     
47     <TR>
48       <TD ALIGN="right" VALIGN="center"><% mt('Zip') |h %></TD>
49       <TD><INPUT TYPE="text" NAME="zip" SIZE=12></TD>
50     </TR>
51
52     <TR>
53         <TD ALIGN="right" VALIGN="center"><% mt('Signup date') |h %></TD>
54         <TD>
55         <TABLE>
56             <& /elements/tr-input-beginning_ending.html,
57                       prefix   => 'signupdate',
58                       layout   => 'horiz',
59             &>
60         </TABLE>
61         </TD>
62     </TR>
63
64 %    if ( $conf->exists('cust_main-enable_birthdate') ) {
65       <TR>
66           <TD ALIGN="right" VALIGN="center"><% mt('Date of Birth') |h %></TD>
67           <TD>
68           <TABLE>
69               <& /elements/tr-input-beginning_ending.html,
70                         prefix   => 'birthdate',
71                         layout   => 'horiz',
72               &>
73           </TABLE>
74           </TD>
75       </TR>
76 %   }
77
78 %    if ( $conf->exists('cust_main-enable_spouse_birthdate') ) {
79       <TR>
80           <TD ALIGN="right" VALIGN="center"><% mt('Spouse Date of Birth') |h %></TD>
81           <TD>
82           <TABLE>
83               <& /elements/tr-input-beginning_ending.html,
84                         prefix   => 'spouse_birthdate',
85                         layout   => 'horiz',
86               &>
87           </TABLE>
88           </TD>
89       </TR>
90 %   }
91
92 %    if ( $conf->exists('cust_main-enable_anniversary_date') ) {
93       <TR>
94           <TD ALIGN="right" VALIGN="center"><% mt('Anniversary Date') |h %></TD>
95           <TD>
96           <TABLE>
97               <& /elements/tr-input-beginning_ending.html,
98                         prefix   => 'anniversary_date',
99                         layout   => 'horiz',
100               &>
101           </TABLE>
102           </TD>
103       </TR>
104 %   }
105
106       <TR>
107         <TD ALIGN="right">Tags</TD>
108         <TD>
109             <& /elements/select-cust_tag.html,
110                           'cgi'         => $cgi,
111                           'is_report'   => 1,
112                           'multiple'    => 1,
113             &>
114           <DIV STYLE="display:inline-block; vertical-align:baseline">
115             <INPUT TYPE="radio" NAME="all_tags" VALUE="0" CHECKED> Any of these
116             <BR>
117             <INPUT TYPE="radio" NAME="all_tags" VALUE="1"> All of these
118           </DIV>
119         </TD>
120       </TR>
121
122     <& /elements/tr-select-payby.html,
123                   'payby_type'   => 'cust',
124                   'multiple'     => 1,
125                   'all_selected' => 1,
126     &>
127
128     <TR>
129       <TD ALIGN="right"><% mt('Payment expiration before') |h %></TD>
130       <TD>
131         <SELECT NAME="paydate_month" DISABLED>
132 %         foreach my $month ( 1 .. 12 ) {
133             <OPTION VALUE="<% $month %>"><% $month %></OPTION>
134 %         }
135         </SELECT>
136         /
137         <SELECT NAME="paydate_year" onChange="paydate_year_changed(this);">
138           <OPTION VALUE=""></OPTION>
139 %         my $lastyear = (localtime(time))[5] + 1899;
140 %         foreach my $year ( $lastyear .. $lastyear+12 ) {
141             <OPTION VALUE="<% $year %>"><% $year %></OPTION>
142 %         }
143         </SELECT>
144       </TD>
145     </TR>
146
147     <SCRIPT TYPE="text/javascript">
148       function paydate_year_changed(what) {
149         var value = what.options[what.selectedIndex].value;
150         var month_select = what.form.paydate_month;
151         if ( value == '' ) {
152           month_select.disabled = true;
153         } else {
154           month_select.disabled = false;
155         }
156       }
157     </SCRIPT>
158  
159     <TR>
160       <TD ALIGN="right"><% mt('Invoice terms') |h %></TD>
161       <TD>
162         <& /elements/select-terms.html,
163                       'pre_options' => [ '' => emt('all') ],
164                       'empty_value' => 'NULL',
165         &>
166       </TD>
167     </TR>
168     
169     <& /elements/tr-input-lessthan_greaterthan.html,
170                   label   => emt('Current balance'),
171                   field   => 'current_balance',
172     &>
173
174     <TR>
175       <TD ALIGN="right" VALIGN="center"><% mt('With email address(es)') |h %></TD>
176         <TD><INPUT TYPE="checkbox" NAME="with_email"></TD>
177     </TR>
178
179     <TR>
180       <TD ALIGN="right" VALIGN="center"><% mt('With postal mail invoices') |h %></TD>
181         <TD><INPUT TYPE="checkbox" NAME="POST" ID="POST" onClick="POST_changed();"></TD>
182     </TR>
183
184     <TR>
185       <TD ALIGN="right" VALIGN="center"><% mt('Without postal mail invoices') |h %></TD>
186         <TD><INPUT TYPE="checkbox" NAME="no_POST" ID="no_POST" onClick="no_POST_changed();"></TD>
187     </TR>
188
189     <SCRIPT TYPE="text/javascript">
190       function POST_changed() {
191         if ( document.getElementById('POST').checked == true ) {
192           document.getElementById('no_POST').checked = false;
193         }
194       }
195       function no_POST_changed() {
196         if ( document.getElementById('no_POST').checked == true ) {
197           document.getElementById('POST').checked = false;
198         }
199       }
200     </SCRIPT>
201
202     <TR>
203       <TH CLASS="background" COLSPAN=2>&nbsp;</TH>
204     </TR>
205
206     <TR>
207       <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1"><% mt('Display options') |h %></FONT></TH>
208     </TR>
209     <& /elements/tr-select-cust-fields.html &>
210
211     <TR>
212       <TD ALIGN="right" VALIGN="center"><% mt('Add package columns') |h %></TD>
213         <TD><INPUT TYPE="checkbox" NAME="flattened_pkgs"></TD>
214     </TR>
215
216     <TR>
217       <TD ALIGN="right" VALIGN="center"><% mt('Include cancelled packages') |h %></TD>
218         <TD><INPUT TYPE="checkbox" NAME="cancelled_pkgs"></TD>
219     </TR>
220
221   </TABLE>
222
223 <BR>
224 <INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
225
226 </FORM>
227
228 <& /elements/footer.html &>
229 <%init>
230
231 die "access denied"
232   unless $FS::CurrentUser::CurrentUser->access_right('Advanced customer search');
233
234 my $conf = new FS::Conf;
235
236 </%init>