rt 4.0.23
[freeside.git] / rt / share / html / Search / Elements / Chart
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 <%args>
49 $Query => "id > 0"
50 $PrimaryGroupBy => 'Queue'
51 $ChartStyle => 'bar'
52 </%args>
53 <%init>
54 use RT::Report::Tickets;
55 $PrimaryGroupBy ||= 'Queue'; # make sure PrimaryGroupBy is not undef
56
57 my $tix = RT::Report::Tickets->new( $session{'CurrentUser'} );
58 my %AllowedGroupings = reverse $tix->Groupings( Query => $Query );
59 $PrimaryGroupBy = 'Queue' unless exists $AllowedGroupings{$PrimaryGroupBy};
60 my ($count_name, $value_name) = $tix->SetupGroupings(
61     Query => $Query, GroupBy => $PrimaryGroupBy,
62 );
63
64 my %class = (
65     Queue => 'RT::Queue',
66     Owner => 'RT::User',
67     Creator => 'RT::User',
68     LastUpdatedBy => 'RT::User',
69 );
70 my $class = $class{ $PrimaryGroupBy };
71
72 my (@keys, @values);
73 while ( my $entry = $tix->Next ) {
74     if ($class) {
75         my $q = $class->new( $session{'CurrentUser'} );
76         $q->Load( $entry->LabelValue( $value_name ) );
77         push @keys, $q->Name;
78     }
79     else {
80         push @keys, $entry->LabelValue( $value_name );
81     }
82     $keys[-1] ||= loc('(no value)');
83     push @values, $entry->__Value( $count_name );
84 }
85
86 my %data;
87 my %loc_keys;
88 foreach my $key (@keys) { $data{$key} = shift @values; $loc_keys{$key} = loc($key); }
89 my @sorted_keys = map { $loc_keys{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
90 my @sorted_values = map { $data{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
91 my $query_string = $m->comp('/Elements/QueryString', %ARGS);
92
93 my ($i,$total);
94 </%init>
95 <div class="chart-wrapper">
96 <span class="chart image">
97 % if (RT->Config->Get('DisableGD')) {
98 <% loc('Graphical charts are not available.') %><br />
99 % } else {
100 <img src="<%RT->Config->Get('WebPath')%>/Search/Chart?<%$query_string|n%>" />
101 % }
102 </span>
103 <table class="collection-as-table chart">
104 <tr>
105 <th class="collection-as-table"><% loc($tix->Label($PrimaryGroupBy)) %>
106 </th>
107 <th class="collection-as-table"><&|/l&>Tickets</&>
108 </th>
109 </tr>
110 <%perl>
111  while (my $key = shift @sorted_keys) {
112  $i++;
113  my $value = shift @sorted_values;
114  $total += $value;
115 </%perl>
116 <tr class="<% $i%2 ? 'evenline' : 'oddline' %>">
117 <%perl>
118 # TODO sadly we don't have "creator.city is null" or alike support yet
119 # so no link if the key is undef for now
120  if ( $PrimaryGroupBy !~ /(Hourly|Daily|Monthly|Annually)$/
121         && $key ne loc('(no value)') ) {
122  my $group = $PrimaryGroupBy; $group =~ s! !.!;
123  my %orig_keys = reverse %loc_keys;
124  my $QueryString = $m->comp('/Elements/QueryString',
125            Query => "$Query and $group = '$orig_keys{$key}'",
126                            Format  => $ARGS{Format},
127                            Rows    => $ARGS{Rows},
128                            OrderBy => $ARGS{OrderBy},
129                            Order   => $ARGS{Order},
130                          );
131 </%perl>
132 <td class="label collection-as-table">
133 <a href=<% RT->Config->Get('WebPath') %>/Search/Results.html?<%$QueryString%>><%$key%></a>
134 </td>
135 <td class="value collection-as-table">
136 <a href=<% RT->Config->Get('WebPath') %>/Search/Results.html?<%$QueryString%>><%$value%></a>
137 </td>
138 % } else {
139 <td class="label collection-as-table"><% $key %></td>
140 <td class="value collection-as-table"><% $value %></td>
141 % }
142 </tr>
143 % }
144
145 %$i++;
146 <tr class="<%$i%2 ? 'evenline' : 'oddline' %> total">
147 <td class="label collection-as-table"><%loc('Total')%></td>
148 <td class="value collection-as-table"><%$total||'0'%></td>
149 </tr>
150
151 </table>
152 <div class="query"><span class="label"><% loc('Query') %>:</span><span class="value"><% $Query %></span></div>
153 </div>