[freeside-commits] freeside/httemplate/graph cust_pkg_cost.cgi, NONE, 1.1 report_cust_pkg_cost.html, NONE, 1.1
Mark Wells
mark at wavetail.420.am
Wed Apr 7 18:15:28 PDT 2010
Update of /home/cvs/cvsroot/freeside/httemplate/graph
In directory wavetail.420.am:/tmp/cvs-serv3406/httemplate/graph
Added Files:
cust_pkg_cost.cgi report_cust_pkg_cost.html
Log Message:
RT#1382: beginning of package cost report
--- NEW FILE: report_cust_pkg_cost.html ---
<% include('/elements/header.html', 'Package Costs Report' ) %>
<FORM ACTION="cust_pkg_cost.cgi" METHOD="GET">
<TABLE>
<% include('/elements/tr-select-from_to.html' ) %>
<% include('/elements/tr-select-agent.html',
'label' => 'For agent: ',
'disable_empty' => 0,
)
%>
</TABLE>
<BR><INPUT TYPE="submit" VALUE="Display">
</FORM>
<% include('/elements/footer.html') %>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
</%init>
--- NEW FILE: cust_pkg_cost.cgi ---
<% include('elements/monthly.html',
'title' => $agentname.
'Package Costs Report',
'graph_type' => 'Lines',
'items' => \@items,
'labels' => \%label,
'graph_labels' => \%label,
'colors' => \%color,
'links' => \%link,
'agentnum' => $agentnum,
'nototal' => scalar($cgi->param('12mo')),
)
%>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
#XXX or virtual
my( $agentnum, $agent ) = ('', '');
if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
$agentnum = $1;
$agent = qsearchs('agent', { 'agentnum' => $agentnum } );
die "agentnum $agentnum not found!" unless $agent;
}
my $agentname = $agent ? $agent->agent.' ' : '';
my @items = qw( cust_pkg_setup_cost cust_pkg_recur_cost );
if ( $cgi->param('12mo') == 1 ) {
@items = map $_.'_12mo', @items;
}
my %label = (
'cust_pkg_setup_cost' => 'Setup Costs',
'cust_pkg_recur_cost' => 'Recurring Costs',
);
$label{$_.'_12mo'} = $label{$_}. " (prev 12 months)"
foreach keys %label;
my %color = (
'cust_pkg_setup_cost' => '0000cc',
'cust_pkg_recur_cost' => '00cc00',
);
$color{$_.'_12mo'} = $color{$_}
foreach keys %color;
my %link = (
'cust_pkg_setup_cost' => { 'link' => "${p}search/cust_pkg.cgi?agentnum=$agentnum;",
'fromparam' => 'setup_begin',
'toparam' => 'setup_end',
},
'cust_pkg_recur_cost' => { 'link' => "${p}search/cust_pkg.cgi?agentnum=$agentnum;",
'fromparam' => 'active_begin',
'toparam' => 'active_end',
},
);
# XXX link 12mo?
</%init>
More information about the freeside-commits
mailing list