import rt 3.8.10
[freeside.git] / rt / share / html / Search / Elements / Chart
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2011 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 $SecondaryGroupBy => undef
52 $ChartStyle => 'bars'
53 </%args>
54 <%init>
55 use RT::Report::Tickets;
56 $PrimaryGroupBy ||= 'Queue'; # make sure PrimaryGroupBy is not undef
57
58 my $tix = RT::Report::Tickets->new( $session{'CurrentUser'} );
59 my %AllowedGroupings = reverse $tix->Groupings( Query => $Query );
60 $PrimaryGroupBy = 'Queue' unless exists $AllowedGroupings{$PrimaryGroupBy};
61 my ($count_name, $value_name) = $tix->SetupGroupings(
62     Query => $Query, GroupBy => $PrimaryGroupBy,
63 );
64
65 my %class = (
66     Queue => 'RT::Queue',
67     Owner => 'RT::User',
68     Creator => 'RT::User',
69     LastUpdatedBy => 'RT::User',
70 );
71 my $class = $class{ $PrimaryGroupBy };
72
73 my (@keys, @values);
74 while ( my $entry = $tix->Next ) {
75     if ($class) {
76         my $q = $class->new( $session{'CurrentUser'} );
77         $q->Load( $entry->LabelValue( $value_name ) );
78         push @keys, $q->Name;
79     }
80     else {
81         push @keys, $entry->LabelValue( $value_name );
82     }
83     $keys[-1] ||= loc('(no value)');
84     push @values, $entry->__Value( $count_name );
85 }
86
87 my %data;
88 my %loc_keys;
89 foreach my $key (@keys) { $data{$key} = shift @values; $loc_keys{$key} = loc($key); }
90 my @sorted_keys = map { $loc_keys{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
91 my @sorted_values = map { $data{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
92
93
94 my $query_string = $m->comp('/Elements/QueryString', %ARGS);
95 </%init>
96
97 <% loc('Query:') %>&nbsp;<% $Query %><br />
98
99 % if (RT->Config->Get('DisableGD')) {
100 <% loc('Graphical charts are not available.') %><br />
101 % } else {
102 <img src="<%RT->Config->Get('WebPath')%>/Search/Chart?<%$query_string|n%>" /><br />
103 % }
104
105 <table class="collection-as-table">
106 <tr>
107 <th class="collection-as-table"><% loc($tix->Label($PrimaryGroupBy)) %>
108 </th>
109 <th class="collection-as-table"><&|/l&>Tickets</&>
110 </th>
111 </tr>
112 % my ($i,$total);
113 % while (my $key = shift @sorted_keys) {
114 % $i++;
115 % my $value = shift @sorted_values;
116 % $total += $value;
117 <tr class="<%$i%2 ? 'evenline' : 'oddline' %>">
118 <td class="label collection-as-table">
119 %# TODO sadly we don't have "creator.city is null" or alike support yet
120 %# so no link if the key is undef for now
121 % if ( $PrimaryGroupBy !~ /(Hourly|Daily|Monthly|Annually)$/
122 %        && $key ne loc('(no value)') ) {
123 % my $group = $PrimaryGroupBy; $group =~ s! !.!;
124 % my %orig_keys = reverse %loc_keys;
125 % my $QueryString = $m->comp('/Elements/QueryString',
126 %           Query => "$Query and $group = '$orig_keys{$key}'",
127 %                           Format  => $ARGS{Format},
128 %                           Rows    => $ARGS{Rows},
129 %                           OrderBy => $ARGS{OrderBy},
130 %                           Order   => $ARGS{Order},
131 %                          );
132 <a href=<% RT->Config->Get('WebURL') %>Search/Results.html?<%$QueryString%>><%$key%></a>
133 % } else {
134 <% $key %>
135 % }
136 </td>
137 <td class="value collection-as-table">
138 <%$value%>
139 </td>
140 </tr>
141 % }
142
143 %$i++;
144 <tr class="<%$i%2 ? 'evenline' : 'oddline' %>">
145 <td class="label collection-as-table">
146 <%loc('Total')%>
147 </td>
148 <td class="value collection-as-table">
149 <%$total||''%>
150 </td>
151 </tr>
152
153 </table>