Merge branch 'xss_fixes' of https://github.com/mcreenan/Freeside
[freeside.git] / httemplate / search / elements / cust_main_dayranges.html
1 <%doc>
2
3 Example:
4
5   include( 'elements/cust_main_dayranges.html',
6                  'title'       => 'Accounts Receivable Aging Summary',
7                  'range_sub'   => $mysub,
8          )
9
10   my $mysub = sub {
11     my( $start, $end ) = @_;
12
13     "SQL EXPRESSION BASED ON $start AND $end";
14     # where $start and $end are unix timestamps
15   };
16
17 </%doc>
18 <& search.html,
19                  'name'        => 'customers',
20                  'query'       => $sql_query,
21                  'count_query' => $count_sql,
22                  'header'      => [ 
23                                     FS::UI::Web::cust_header(),
24                                     '0-30',
25                                     '30-60',
26                                     '60-90',
27                                     '90+',
28                                     emt('Total'),
29                                     @pay_head,
30                                   ],
31                  'footer'      => [
32                                     'Total',
33                                     ( map '',
34                                           ( 1 .. 
35                                             scalar(FS::UI::Web::cust_header()-1)
36                                           ),
37                                     ),
38                                     
39                                     sprintf( $money_char.'%.2f',
40                                              $row->{'rangecol_0_30'} ),
41                                     sprintf( $money_char.'%.2f',
42                                              $row->{'rangecol_30_60'} ),
43                                     sprintf( $money_char.'%.2f',
44                                              $row->{'rangecol_60_90'} ),
45                                     sprintf( $money_char.'%.2f',
46                                              $row->{'rangecol_90_0'} ),
47                                     sprintf( '<b>'. $money_char.'%.2f'. '</b>',
48                                              $row->{'rangecol_0_0'} ),
49                                     ('') x @pay_labels,
50                                   ],
51                  'fields'      => [
52                                     FS::UI::Web::cust_fields_subs(),
53                                     format_rangecol('0_30'),
54                                     format_rangecol('30_60'),
55                                     format_rangecol('60_90'),
56                                     format_rangecol('90_0'),
57                                     format_rangecol('0_0'),
58                                     @pay_labels,
59                                   ],
60                  'links'       => [
61                                     ( map { $_ ne 'Cust. Status' ? $clink : '' }
62                                           FS::UI::Web::cust_header()
63                                     ),
64                                     '',
65                                     '',
66                                     '',
67                                     '',
68                                     '',
69                                     @pay_links,
70                                   ],
71                  'align'       => FS::UI::Web::cust_aligns(). 
72                                    'rrrrr'.
73                                   ('c' x @pay_labels),
74                  'size'        => [ ( map '', FS::UI::Web::cust_header() ),
75                                     #'-1', '', '', '', '',  '', ],
76                                     '', '', '', '', '',  '', 
77                                     ( map '', @pay_labels ),
78                                     ],
79                  'style'       => [ FS::UI::Web::cust_styles(),
80                                     #'b', '', '', '', '', 'b', ],
81                                     '', '', '', '', 'b', 
82                                     ( map '', @pay_labels ),
83                                     ],
84                  'color'       => [
85                                     FS::UI::Web::cust_colors(),
86                                     '',
87                                     '',
88                                     '',
89                                     '',
90                                     '',
91                                     '',
92                                     ( map '', @pay_labels ),
93                                   ],
94                %opt,
95 &>
96 <%init>
97
98 my %opt = @_;
99
100 #actually need to auto-generate other things too for a passed-in ranges to work
101 my $ranges = $opt{'ranges'} ? delete($opt{'ranges'}) : [
102   [  0, 30 ],
103   [ 30, 60 ],
104   [ 60, 90 ],
105   [ 90,  0 ],
106   [  0,  0 ],
107 ];
108
109 my $range_sub = delete($opt{'range_sub'}); #or die
110
111 my $as_of;
112 if($cgi->param('as_of')) {
113   $as_of = parse_datetime($cgi->param('as_of')) || '';
114   $opt{'title'} .= ' ('.$cgi->param('as_of').')' if $as_of;
115 }
116
117 my $range_cols = join(',', 
118   map call_range_sub($range_sub, @$_, 'as_of' => $as_of ), @$ranges );
119
120 my $select_count_pkgs = FS::cust_main->select_count_pkgs_sql;
121
122 my $active_sql    = FS::cust_pkg->active_sql;
123 my $inactive_sql  = FS::cust_pkg->inactive_sql;
124 my $suspended_sql = FS::cust_pkg->suspended_sql;
125 my $cancelled_sql = FS::cust_pkg->cancelled_sql;
126
127 my $packages_cols = <<END;
128      ( $select_count_pkgs                    ) AS num_pkgs_sql,
129      ( $select_count_pkgs AND $active_sql    ) AS active_pkgs,
130      ( $select_count_pkgs AND $inactive_sql  ) AS inactive_pkgs,
131      ( $select_count_pkgs AND $suspended_sql ) AS suspended_pkgs,
132      ( $select_count_pkgs AND $cancelled_sql ) AS cancelled_pkgs
133 END
134
135 my @where = ();
136
137 unless ( $cgi->param('all_customers') ) {
138 # Exclude entire cust_main records where the balance is >0
139   my $days = 0;
140   if ( $cgi->param('days') =~ /^\s*(\d+)\s*$/ ) {
141     $days = $1;
142   }
143
144   # If this is set, allow cust_main records with nonzero balances
145   my $negative = $cgi->param('negative') || 0;
146
147   push @where,
148     call_range_sub($range_sub, $days, 0, 'as_of' => $as_of, 'no_as'=>1). 
149     ($negative ? ' != 0' : ' > 0');
150 }
151
152 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
153   my $agentnum = $1;
154   push @where, "agentnum = $agentnum";
155 }
156
157 #status (false laziness w/cust_main::search_sql
158
159 #prospect active inactive suspended cancelled
160 if ( grep { $cgi->param('status') eq $_ } FS::cust_main->statuses() ) {
161   my $method = $cgi->param('status'). '_sql';
162   push @where, FS::cust_main->$method();
163 }
164
165 # cust_classnum (false laziness w/prepaid_income.html, elements/cust_pay_or_refund.html, cust_bill_pay.html, cust_bill_pkg.html, cust_bill_pkg_referral.html, unearned_detail.html, cust_credit.html, cust_credit_refund.html, cust_main::Search::search_sql)
166 if ( grep { $_ eq 'cust_classnum' } $cgi->param ) {
167   my @classnums = grep /^\d*$/, $cgi->param('cust_classnum');
168   push @where, 'COALESCE( cust_main.classnum, 0) IN ( '.
169                    join(',', map { $_ || '0' } @classnums ).
170                ' )'
171     if @classnums;
172 }
173
174 #here is the agent virtualization
175 push @where, $FS::CurrentUser::CurrentUser->agentnums_sql;
176
177 my $where = join(' AND ', @where);
178 $where = "WHERE $where" if $where;
179
180 my $count_sql = "select count(*) from cust_main $where";
181
182 my $sql_query = {
183   'table'     => 'cust_main',
184   'addl_from' => FS::UI::Web::join_cust_main('cust_main'),
185   'hashref'   => {},
186   'select'    => join(',',
187                    #'cust_main.*',
188                    'cust_main.custnum',
189                    $range_cols,
190                    $packages_cols,
191                    FS::UI::Web::cust_sql_fields(),
192                    'payby',
193                  ),
194   'extra_sql' => $where,
195   'order_by'  => "order by coalesce(lower(company), ''), lower(last)",
196 };
197
198 my $total_sql =
199   "SELECT ".
200       join(',', 
201         map call_range_sub( $range_sub, @$_, 'as_of' => $as_of, 'sum'=>1 ), 
202         @$ranges).
203     " FROM cust_main $where";
204
205 my $total_sth = dbh->prepare($total_sql) or die dbh->errstr;
206 $total_sth->execute or die "error executing $total_sql: ". $total_sth->errstr;
207 my $row = $total_sth->fetchrow_hashref();
208
209 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
210
211 my (@payby, @pay_head, @pay_labels, @pay_links);
212
213 my %payby = map {$_ => 1} $conf->config('payby');
214 if(%payby) {
215   push @payby, 'CARD' if ($payby{'CARD'} or $payby{'DCRD'});
216   push @payby, 'CHEK' if ($payby{'CHEK'} or $payby{'DCHK'});
217 }
218 else {
219   @payby = ('CARD','CHEK')
220 }
221
222 if($opt{'payment_links'} && $curuser->access_right('Process payment') && @payby) {
223   my %label = ( CARD => 'Card',
224                 CHEK => 'E-Check' );
225   push @pay_head, ({nodownload => 1}) foreach @payby;
226   $pay_head[0] = { label => 'Process',
227                    nodownload => 1,
228                    colspan => scalar(@payby) };
229
230   @pay_labels = (map { my $payby = $_; 
231                        my $label = $label{$payby};
232                        sub {($payby eq $_[0]->payby) ? "<b>".emt("$label (on file)")."</b>" : emt($label)}
233                      } @payby );
234
235   @pay_links = (map { [ "${p}misc/payment.cgi?payby=$_;custnum=", 'custnum' ] }
236                          @payby );
237 }
238
239 </%init>
240 <%once>
241
242 my $conf = new FS::Conf;
243 my $curuser = $FS::CurrentUser::CurrentUser;
244
245 my $money_char = $conf->config('money_char') || '$';
246
247 #Example:
248 #
249 # my $balance = balance(
250 #   $start, $end, 
251 #   'no_as'  => 1, #set to true when using in a WHERE clause (supress AS clause)
252 #                 #or 0 / omit when using in a SELECT clause as a column
253 #                 #  ("AS balance_$start_$end")
254 #   'sum'    => 1, #set to true to get a SUM() of the values, for totals
255 #
256 #   #obsolete? options for totals (passed to cust_main::balance_date_sql)
257 #   'total'  => 1, #set to true to remove all customer comparison clauses
258 #   'join'   => $join,   #JOIN clause
259 #   'where'  => \@where, #WHERE clause hashref (elements "AND"ed together)
260 # )
261
262 sub call_range_sub {
263   my($range_sub, $startdays, $enddays, %opt) = @_;
264
265   my $as = $opt{'no_as'} ? '' : " AS rangecol_${startdays}_$enddays";
266
267   my $as_of = $opt{'as_of'} || time;
268   my $cutoff = DateTime->from_epoch(epoch => $as_of, time_zone => 'local');
269   $cutoff->truncate(to => 'day'); # local midnight on the report day
270   $cutoff->add(days => 1); # the day after that
271   $cutoff->subtract(seconds => 1); # the last second of the report day
272
273   my $start = $cutoff->clone;
274   $start->subtract(days => $startdays);
275  
276   my $end = $cutoff->clone;
277   $end->subtract(days => $enddays);
278
279   #warn "cutoff ".$cutoff->epoch.", range $startdays-$enddays (".$start->epoch . '-' . ($enddays ? $end->epoch : '').")\n";
280   my $sql = &{$range_sub}( $start->epoch, 
281                            $enddays ? $end->epoch : '', 
282                            $cutoff->epoch ); #%opt?
283
284   $sql = "SUM($sql)" if $opt{'sum'};
285
286   $sql.$as;
287
288 }
289
290 sub format_rangecol { #closures help alot
291   my $range = shift;
292   sub { sprintf( $money_char.'%.2f', shift->get("rangecol_$range") ) };
293 }
294
295 </%once>