RT#866: links to process payments from aging report
[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   };
15
16 </%doc>
17 <% include( 'search.html',
18                  'name'        => 'customers',
19                  'query'       => $sql_query,
20                  'count_query' => $count_sql,
21                  'header'      => [ 
22                                     FS::UI::Web::cust_header(),
23                                     @pay_head,
24                                     '0-30',
25                                     '30-60',
26                                     '60-90',
27                                     '90+',
28                                     'Total',
29                                   ],
30                  'footer'      => [
31                                     'Total',
32                                     ( map '',
33                                           ( 1 .. 
34                                             scalar(FS::UI::Web::cust_header()-1)
35                                           ), @pay_labels
36                                     ),
37                                     
38                                     sprintf( $money_char.'%.2f',
39                                              $row->{'rangecol_0_30'} ),
40                                     sprintf( $money_char.'%.2f',
41                                              $row->{'rangecol_30_60'} ),
42                                     sprintf( $money_char.'%.2f',
43                                              $row->{'rangecol_60_90'} ),
44                                     sprintf( $money_char.'%.2f',
45                                              $row->{'rangecol_90_0'} ),
46                                     sprintf( '<b>'. $money_char.'%.2f'. '</b>',
47                                              $row->{'rangecol_0_0'} ),
48                                   ],
49                  'fields'      => [
50                                     FS::UI::Web::cust_fields_subs(),
51                                     @pay_labels,
52                                     format_rangecol('0_30'),
53                                     format_rangecol('30_60'),
54                                     format_rangecol('60_90'),
55                                     format_rangecol('90_0'),
56                                     format_rangecol('0_0'),
57                                   ],
58                  'links'       => [
59                                     ( map { $_ ne 'Cust. Status' ? $clink : '' }
60                                           FS::UI::Web::cust_header()
61                                     ),
62                                     @pay_links,
63                                     '',
64                                     '',
65                                     '',
66                                     '',
67                                     '',
68                                   ],
69                  #'align'       => 'rlccrrrrr',
70                  'align'       => FS::UI::Web::cust_aligns(). 'rrrrr',
71                  #'size'        => [ '', '', '-1', '-1', '', '', '', '',  '', ],
72                  #'style'       => [ '', '',  'b',  'b', '', '', '', '', 'b', ],
73                  'size'        => [ ( map '', FS::UI::Web::cust_header() ),
74                                     ( map '', @pay_labels ),
75                                     #'-1', '', '', '', '',  '', ],
76                                     '', '', '', '', '',  '', ],
77                  'style'       => [ FS::UI::Web::cust_styles(),
78                                     ( map '', @pay_labels ),
79                                     #'b', '', '', '', '', 'b', ],
80                                     '', '', '', '', 'b', ],
81                  'color'       => [
82                                     FS::UI::Web::cust_colors(),
83                                     ( map '', @pay_labels ),
84                                     '',
85                                     '',
86                                     '',
87                                     '',
88                                     '',
89                                     '',
90                                   ],
91                %opt,
92              )
93 %>
94 <%init>
95
96 my %opt = @_;
97
98 #actually need to auto-generate other things too for a passed-in ranges to work
99 my $ranges = $opt{'ranges'} ? delete($opt{'ranges'}) : [
100   [  0, 30 ],
101   [ 30, 60 ],
102   [ 60, 90 ],
103   [ 90,  0 ],
104   [  0,  0 ],
105 ];
106
107 my $range_sub = delete($opt{'range_sub'}); #or die
108
109 my $offset = 0;
110 if($cgi->param('as_of')) {
111   $offset = int((time - str2time($cgi->param('as_of'))) / 86400);
112   $opt{'title'} .= ' ('.$cgi->param('as_of').')' if $offset > 0;
113 }
114
115 #my $range_cols = join(',', map &{$range_sub}( @$_ ), @ranges );
116 my $range_cols = join(',', map call_range_sub($range_sub, @$_, 'offset' => $offset ), @$ranges );
117
118 my $select_count_pkgs = FS::cust_main->select_count_pkgs_sql;
119
120 my $active_sql    = FS::cust_pkg->active_sql;
121 my $inactive_sql  = FS::cust_pkg->inactive_sql;
122 my $suspended_sql = FS::cust_pkg->suspended_sql;
123 my $cancelled_sql = FS::cust_pkg->cancelled_sql;
124
125 my $packages_cols = <<END;
126      ( $select_count_pkgs                    ) AS num_pkgs_sql,
127      ( $select_count_pkgs AND $active_sql    ) AS active_pkgs,
128      ( $select_count_pkgs AND $inactive_sql  ) AS inactive_pkgs,
129      ( $select_count_pkgs AND $suspended_sql ) AS suspended_pkgs,
130      ( $select_count_pkgs AND $cancelled_sql ) AS cancelled_pkgs
131 END
132
133 my @where = ();
134
135 unless ( $cgi->param('all_customers') ) {
136 # Exclude entire cust_main records where the balance is >0
137   my $days = 0;
138   if ( $cgi->param('days') =~ /^\s*(\d+)\s*$/ ) {
139     $days = $1;
140   }
141
142   push @where,
143     call_range_sub($range_sub, $days + $offset, 0, 'no_as'=>1). ' > 0'; # != 0';
144 }
145
146 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
147   my $agentnum = $1;
148   push @where, "agentnum = $agentnum";
149 }
150
151 #status (false laziness w/cust_main::search_sql
152
153 #prospect active inactive suspended cancelled
154 if ( grep { $cgi->param('status') eq $_ } FS::cust_main->statuses() ) {
155   my $method = $cgi->param('status'). '_sql';
156   #push @where, $class->$method();
157   push @where, FS::cust_main->$method();
158 }
159
160 #here is the agent virtualization
161 push @where, $FS::CurrentUser::CurrentUser->agentnums_sql;
162
163 my $where = join(' AND ', @where);
164 $where = "WHERE $where" if $where;
165
166 my $count_sql = "select count(*) from cust_main $where";
167
168 my $sql_query = {
169   'table'     => 'cust_main',
170   'hashref'   => {},
171   'select'    => join(',',
172                    #'cust_main.*',
173                    'custnum',
174                    $range_cols,
175                    $packages_cols,
176                    FS::UI::Web::cust_sql_fields(),
177                    'payby',
178                  ),
179   'extra_sql' => $where,
180   'order_by'  => "order by coalesce(lower(company), ''), lower(last)",
181 };
182
183 my $total_sql =
184   "SELECT ".
185       join(',', map call_range_sub( $range_sub, @$_, 'offset' => $offset, 'sum'=>1 ), @$ranges).
186     " FROM cust_main $where";
187
188 my $total_sth = dbh->prepare($total_sql) or die dbh->errstr;
189 $total_sth->execute or die "error executing $total_sql: ". $total_sth->errstr;
190 my $row = $total_sth->fetchrow_hashref();
191
192 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
193
194 my (@pay_head, @pay_labels, @pay_links);
195
196 if($opt{'payment_links'} && $curuser->access_right('Process payment')) {
197   @pay_head = ({ label => 'Process', nodownload => 1, colspan => 2 },
198                 { nodownload => 1 });
199
200   @pay_labels = (map { my ($payby,$label) = @$_; 
201                         sub {($payby eq $_[0]->payby) ? "<b>$label</b>" : $label}
202                      } ([CARD => 'Card'], [CHEK => 'ACH']) );
203
204   @pay_links = (map { [ "${p}misc/payment.cgi?payby=$_;custnum=", 'custnum' ] }
205                          'CARD', 'CHEK' );
206 }
207
208 </%init>
209 <%once>
210
211 my $conf = new FS::Conf;
212 my $curuser = $FS::CurrentUser::CurrentUser;
213
214 my $money_char = $conf->config('money_char') || '$';
215
216 #Example:
217 #
218 # my $balance = balance(
219 #   $start, $end, 
220 #   'no_as'  => 1, #set to true when using in a WHERE clause (supress AS clause)
221 #                 #or 0 / omit when using in a SELECT clause as a column
222 #                 #  ("AS balance_$start_$end")
223 #   'sum'    => 1, #set to true to get a SUM() of the values, for totals
224 #
225 #   #obsolete? options for totals (passed to cust_main::balance_date_sql)
226 #   'total'  => 1, #set to true to remove all customer comparison clauses
227 #   'join'   => $join,   #JOIN clause
228 #   'where'  => \@where, #WHERE clause hashref (elements "AND"ed together)
229 # )
230
231 sub call_range_sub {
232   my($range_sub, $start, $end, %opt) = @_;
233
234   my $as = $opt{'no_as'} ? '' : " AS rangecol_${start}_$end";
235
236   my $sql = &{$range_sub}( $start, $end, $opt{'offset'} ); #%opt?
237
238   $sql = "SUM($sql)" if $opt{'sum'};
239
240   $sql.$as;
241
242 }
243
244 sub format_rangecol { #closures help alot
245   my $range = shift;
246   sub { sprintf( $money_char.'%.2f', shift->get("rangecol_$range") ) };
247 }
248
249 </%once>