summaryrefslogtreecommitdiff
path: root/httemplate/graph/cust_bill_pkg_discount.html
blob: 22327e05ba4b8c49fb87c4188d587b328d102bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<% include('elements/monthly.html',
                'title'        => $title,
                'graph_type'   => 'Mountain',
                'items'        => \@items,
                'params'       => \@params,
                'labels'       => \@labels,
                'graph_labels' => \@labels,
                'colors'       => \@colors,
                'links'        => \@links,
                'remove_empty' => 1,
                'bottom_total' => 1,
                'bottom_link'  => $bottom_link,
                'agentnum'     => $agentnum,
          )
%>
<%init>

#false laziness w/cust_bill_pkg.cgi

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');

my $include_waived_setup = $cgi->param('include_waived_setup') || 0;

my $link = "${p}search/cust_bill_pkg_discount.html?";
$link .= "include_waived_setup=Y&" if $include_waived_setup;
my $bottom_link = $link;

#XXX or virtual
my( $agentnum, $sel_agent ) = ('', '');
if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
  $agentnum = $1;
  $bottom_link .= "agentnum=$agentnum;";
  $sel_agent = qsearchs('agent', { 'agentnum' => $agentnum } );
  die "agentnum $agentnum not found!" unless $sel_agent;
}
my $title = $sel_agent ? $sel_agent->agent.' ' : '';
$title .= 'Discount Overview';


#my $hue = 0; # Start with illegible yellow-on-white
my $hue = 255; # Start with red-on-white
#my $hue_increment = 170;
#my $hue_increment = 145;
my $hue_increment = 125;

my @items  = ();
my @params = ();
my @labels = ();
my @colors = ();
my @links  = ();

foreach my $agent ( $sel_agent || qsearch('agent', { 'disabled' => '' } ) ) {

  my $col_scheme = Color::Scheme->new
                     ->from_hue($hue) #->from_hex($agent->color)
                     ->scheme('analogic')
                   ;
  my @_colors = ();

  #foreach my $pkg_class ( @pkg_class ) {

      push @items,
        $include_waived_setup
        ? 'cust_bill_pkg_discount_or_waived'
        : 'cust_bill_pkg_discount';

      push @labels,
        ( $sel_agent ? '' : $agent->agent.' ' );
        #. ( $classnum eq '0'
        #    ? ( ref($pkg_class) ? $pkg_class->classname : $pkg_class ) 
        #    : ''
        #  );

      #my $row_classnum = ref($pkg_class) ? $pkg_class->classnum : 0;
      my $row_agentnum = $agent->agentnum;
      push @params, [ #'classnum'             => $row_classnum,
                      'agentnum'             => $row_agentnum,
                      #'use_override'         => $use_override,
                      #'use_usage'            => $component,
                      #'average_per_cust_pkg' => $average_per_cust_pkg,
                    ];

      push @links, $link . "agentnum=$row_agentnum;";

      @_colors = ($col_scheme->colors)[0,4,8,1,5,9,2,6,10,3,7,11];
      push @colors, shift @_colors;

  #}

  $hue += $hue_increment;

}

#use Data::Dumper;
#warn Dumper(\@items);

</%init>