Added separate access right for receivables report
[freeside.git] / httemplate / search / report_receivables.cgi
1 <% include( 'elements/search.html',
2                  'title'       => 'Accounts Receivable Aging Summary',
3                  'name'        => 'customers',
4                  'query'       => $sql_query,
5                  'count_query' => $count_sql,
6                  'header'      => [
7                                     FS::UI::Web::cust_header(),
8                                     '0-30',
9                                     '30-60',
10                                     '60-90',
11                                     '90+',
12                                     'Total',
13                                   ],
14                  'footer'      => [
15                                     'Total',
16                                     ( map '',
17                                           ( 1 .. 
18                                             scalar(FS::UI::Web::cust_header()-1)
19                                           )
20                                     ),
21                                     sprintf( $money_char.'%.2f',
22                                              $row->{'balance_0_30'} ),
23                                     sprintf( $money_char.'%.2f',
24                                              $row->{'balance_30_60'} ),
25                                     sprintf( $money_char.'%.2f',
26                                              $row->{'balance_60_90'} ),
27                                     sprintf( $money_char.'%.2f',
28                                              $row->{'balance_90_0'} ),
29                                     sprintf( '<b>'. $money_char.'%.2f'. '</b>',
30                                              $row->{'balance_0_0'} ),
31                                   ],
32                  'fields'      => [
33                                     \&FS::UI::Web::cust_fields,
34                                     format_balance('0_30'),
35                                     format_balance('30_60'),
36                                     format_balance('60_90'),
37                                     format_balance('90_0'),
38                                     format_balance('0_0'),
39                                   ],
40                  'links'       => [
41                                     ( map { $_ ne 'Cust. Status' ? $clink : '' }
42                                           FS::UI::Web::cust_header()
43                                     ),
44                                     '',
45                                     '',
46                                     '',
47                                     '',
48                                     '',
49                                   ],
50                  #'align'       => 'rlccrrrrr',
51                  'align'       => FS::UI::Web::cust_aligns(). 'rrrrr',
52                  #'size'        => [ '', '', '-1', '-1', '', '', '', '',  '', ],
53                  #'style'       => [ '', '',  'b',  'b', '', '', '', '', 'b', ],
54                  'size'        => [ ( map '', FS::UI::Web::cust_header() ),
55                                     #'-1', '', '', '', '',  '', ],
56                                     '', '', '', '',  '', ],
57                  'style'       => [ FS::UI::Web::cust_styles(),
58                                     #'b', '', '', '', '', 'b', ],
59                                     '', '', '', '', 'b', ],
60                  'color'       => [
61                                     FS::UI::Web::cust_colors(),
62                                     '',
63                                     '',
64                                     '',
65                                     '',
66                                     '',
67                                   ],
68
69              )
70 %>
71 <%init>
72
73 die "access denied"
74   unless $FS::CurrentUser::CurrentUser->access_right('Receivables report');
75
76 my @ranges = (
77   [  0, 30 ],
78   [ 30, 60 ],
79   [ 60, 90 ],
80   [ 90,  0 ],
81   [  0,  0 ],
82 );
83
84 my $owed_cols = join(',', map balance( @$_ ), @ranges );
85
86 my $select_count_pkgs = FS::cust_main->select_count_pkgs_sql;
87
88 my $active_sql    = FS::cust_pkg->active_sql;
89 my $inactive_sql  = FS::cust_pkg->inactive_sql;
90 my $suspended_sql = FS::cust_pkg->suspended_sql;
91 my $cancelled_sql = FS::cust_pkg->cancelled_sql;
92
93 my $packages_cols = <<END;
94      ( $select_count_pkgs                    ) AS num_pkgs_sql,
95      ( $select_count_pkgs AND $active_sql    ) AS active_pkgs,
96      ( $select_count_pkgs AND $inactive_sql  ) AS inactive_pkgs,
97      ( $select_count_pkgs AND $suspended_sql ) AS suspended_pkgs,
98      ( $select_count_pkgs AND $cancelled_sql ) AS cancelled_pkgs
99 END
100
101 my @where = ();
102
103 unless ( $cgi->param('all_customers') ) {
104
105   my $days = 0;
106   if ( $cgi->param('days') =~ /^\s*(\d+)\s*$/ ) {
107     $days = $1;
108   }
109
110   push @where, balance($days, 0, 'no_as'=>1). ' > 0'; # != 0';
111
112 }
113
114 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
115   my $agentnum = $1;
116   push @where, "agentnum = $agentnum";
117 }
118
119 #status (false laziness w/cust_main::search_sql
120
121 #prospect active inactive suspended cancelled
122 if ( grep { $cgi->param('status') eq $_ } FS::cust_main->statuses() ) {
123   my $method = $cgi->param('status'). '_sql';
124   #push @where, $class->$method();
125   push @where, FS::cust_main->$method();
126 }
127
128 #here is the agent virtualization
129 push @where, $FS::CurrentUser::CurrentUser->agentnums_sql;
130
131 my $where = join(' AND ', @where);
132 $where = "WHERE $where" if $where;
133
134 my $count_sql = "select count(*) from cust_main $where";
135
136 my $sql_query = {
137   'table'     => 'cust_main',
138   'hashref'   => {},
139   'select'    => join(',',
140                    #'cust_main.*',
141                    'custnum',
142                    $owed_cols,
143                    $packages_cols,
144                    FS::UI::Web::cust_sql_fields(),
145                  ),
146   'extra_sql' => $where,
147   'order_by'  => "order by coalesce(lower(company), ''), lower(last)",
148 };
149
150 my $total_sql = "SELECT ". join(',', map balance( @$_, 'sum'=>1 ), @ranges).
151                 " FROM cust_main $where";
152
153 my $total_sth = dbh->prepare($total_sql) or die dbh->errstr;
154 $total_sth->execute or die "error executing $total_sql: ". $total_sth->errstr;
155 my $row = $total_sth->fetchrow_hashref();
156
157 my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
158
159 </%init>
160 <%once>
161
162 my $conf = new FS::Conf;
163
164 my $money_char = $conf->config('money_char') || '$';
165
166 #Example:
167 #
168 # my $balance = balance(
169 #   $start, $end, 
170 #   'no_as'  => 1, #set to true when using in a WHERE clause (supress AS clause)
171 #                 #or 0 / omit when using in a SELECT clause as a column
172 #                 #  ("AS balance_$start_$end")
173 #   'sum'    => 1, #set to true to get a SUM() of the values, for totals
174 #
175 #   #obsolete? options for totals (passed to cust_main::balance_date_sql)
176 #   'total'  => 1, #set to true to remove all customer comparison clauses
177 #   'join'   => $join,   #JOIN clause
178 #   'where'  => \@where, #WHERE clause hashref (elements "AND"ed together)
179 # )
180
181 sub balance {
182   my($start, $end, %opt) = @_;
183
184   my $as = $opt{'no_as'} ? '' : " AS balance_${start}_$end";
185
186   #handle start and end ranges (86400 = 24h * 60m * 60s)
187   my $str2time = str2time_sql;
188   my $closing = str2time_sql_closing;
189   $start = $start ? "( $str2time now() $closing - ".($start * 86400). ' )' : '';
190   $end   = $end   ? "( $str2time now() $closing - ".($end   * 86400). ' )' : '';
191
192   $opt{'unapplied_date'} = 1;
193
194   ( $opt{sum} ? 'SUM( ' : '' ). 
195   FS::cust_main->balance_date_sql( $start, $end, %opt ).
196   ( $opt{sum} ? ' )' : '' ). 
197   $as;
198
199 }
200
201 sub format_balance { #closures help alot
202   my $range = shift;
203   sub { sprintf( $money_char.'%.2f', shift->get("balance_$range") ) };
204 }
205
206 </%once>