[freeside-commits] freeside/httemplate/search cust_pkg_summary.cgi, NONE, 1.1 cust_pkg_summary.html, NONE, 1.1
Mark Wells
mark at wavetail.420.am
Thu Aug 5 13:10:44 PDT 2010
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail.420.am:/tmp/cvs-serv27996/httemplate/search
Added Files:
cust_pkg_summary.cgi cust_pkg_summary.html
Log Message:
Package summary report, RT#8461
--- NEW FILE: cust_pkg_summary.html ---
<% include( '/elements/header.html', 'Package Summary Report' ) %>
<FORM ACTION="cust_pkg_summary.cgi" METHOD="GET">
<TABLE BGCOLOR="#cccccc" CELLSPACING=0>
<TR>
<TH CLASS="background" COLSPAN=2 ALIGN="left">
<FONT SIZE="+1">Search options</FONT>
</TH>
</TR>
<% include ('/elements/tr-input-beginning_ending.html') %>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Get Report">
</FORM>
<% include('/elements/footer.html') %>
<%init>
</%init>
--- NEW FILE: cust_pkg_summary.cgi ---
<% include('/elements/header.html', $title) %>
<% include('/elements/table-grid.html') %>
<TR>
% foreach (@head) {
<TH CLASS="grid" BGCOLOR="#cccccc"><% $_ %></TH>
% }
</TR>
% my $r=0;
% foreach my $row (@rows) {
<TR>
% foreach (@$row) {
<TD CLASS="grid" ALIGN="right" BGCOLOR="<% $r % 2 ? '#ffffff' : '#eeeeee' %>"><% $_ %></TD>
% }
</TR>
% $r++;
% }
<TR>
% foreach (@totals) {
<TD CLASS="grid" ALIGN="right" BGCOLOR="<% $r % 2 ? '#ffffff' : '#eeeeee' %>"><B><% $_ %></B></TD>
% }
</TR>
</TABLE>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('List packages');
my $title = 'Package Summary Report';
my ($begin, $end) = FS::UI::Web::parse_beginning_ending($cgi);
if($begin > 0) {
$title = "$title (".
$cgi->param('beginning').' - '.$cgi->param('ending').')';
}
my @h_sql = FS::h_cust_pkg->sql_h_search($end);
my ($end_sql, $addl_from) = @h_sql[1,3];
$end_sql =~ s/ORDER BY.*//; # breaks aggregate queries
my $begin_sql = $end_sql;
$begin_sql =~ s/$end/$begin/g;
my $active_sql = FS::cust_pkg->active_sql;
my $suspended_sql = FS::cust_pkg->suspended_sql;
my @conds = (
# SQL WHERE clauses for each column of the table.
" $begin_sql AND ($active_sql OR $suspended_sql)",
'',
" $end_sql AND ($active_sql OR $suspended_sql)",
" $end_sql AND $active_sql",
" $end_sql AND $suspended_sql",
);
$_ =~ s/\bcust_pkg/maintable/g foreach @conds;
my @head = ('Package', 'Before Period', 'Sales', 'Total', 'Active', 'Suspended');
my @rows = ();
my @totals = ('Total', 0, 0, 0, 0, 0);
if( !$begin ) {
splice @conds, 1, 1;
splice @head, 1, 1;
}
foreach my $part_pkg (qsearch('part_pkg', {} )) {
my @row = ();
next if !$part_pkg->freq; # exclude one-time packages
push @row, $part_pkg->pkg;
my $i=1;
foreach my $cond (@conds) {
if($cond) {
my $result = qsearchs({
'table' => 'h_cust_pkg',
'hashref' => {},
'select' => 'count(*)',
'addl_from' => $addl_from,
'extra_sql' => 'WHERE pkgpart = '.$part_pkg->pkgpart.$cond,
});
$row[$i] = $result->getfield('count');
$totals[$i] += $row[$i];
}
$i++;
}
$row[2] = $row[3]-$row[1];
$totals[2] += $row[2];
push @rows, \@row;
}
</%init>
More information about the freeside-commits
mailing list