This commit was generated by cvs2svn to compensate for changes in r9232,
[freeside.git] / rt / share / html / Search / Elements / Chart
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 %#                                          <jesse@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 ($count_name, $value_name) = $tix->SetupGroupings(
60     Query => $Query, GroupBy => $PrimaryGroupBy,
61 );
62
63 my %class = (
64     Queue => 'RT::Queue',
65     Owner => 'RT::User',
66     Creator => 'RT::User',
67     LastUpdatedBy => 'RT::User',
68 );
69 my $class = $class{ $PrimaryGroupBy };
70
71 my (@keys, @values);
72 while ( my $entry = $tix->Next ) {
73     if ($class) {
74         my $q = $class->new( $session{'CurrentUser'} );
75         $q->Load( $entry->LabelValue( $value_name ) );
76         push @keys, $q->Name;
77     }
78     else {
79         push @keys, $entry->LabelValue( $value_name );
80     }
81     $keys[-1] ||= loc('(no value)');
82     push @values, $entry->__Value( $count_name );
83 }
84
85 my %data;
86 my %loc_keys;
87 foreach my $key (@keys) { $data{$key} = shift @values; $loc_keys{$key} = loc($key); }
88 my @sorted_keys = map { $loc_keys{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
89 my @sorted_values = map { $data{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
90
91
92 my $query_string = $m->comp('/Elements/QueryString', %ARGS);
93 </%init>
94
95 <% loc('Query:') %>&nbsp;<% $Query %><br />
96
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%>" /><br />
101 % }
102
103 <table class="collection-as-table">
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 % my ($i,$total);
111 % while (my $key = shift @sorted_keys) {
112 % $i++;
113 % my $value = shift @sorted_values;
114 % $total += $value;
115 <tr class="<%$i%2 ? 'evenline' : 'oddline' %>">
116 <td class="label collection-as-table">
117 %# TODO sadly we don't have "creator.city is null" or alike support yet
118 %# so no link if the key is undef for now
119 % if ( $PrimaryGroupBy !~ /(Hourly|Daily|Monthly|Annually)$/
120 %        && $key ne loc('(no value)') ) {
121 % my $group = $PrimaryGroupBy; $group =~ s! !.!;
122 % my %orig_keys = reverse %loc_keys;
123 % my $QueryString = $m->comp('/Elements/QueryString',
124 %           Query => "$Query and $group = '$orig_keys{$key}'",
125 %                           Format  => $ARGS{Format},
126 %                           Rows    => $ARGS{Rows},
127 %                           OrderBy => $ARGS{OrderBy},
128 %                           Order   => $ARGS{Order},
129 %                          );
130 <a href=<% RT->Config->Get('WebURL') %>Search/Results.html?<%$QueryString%>><%$key%></a>
131 % } else {
132 <% $key %>
133 % }
134 </td>
135 <td class="value collection-as-table">
136 <%$value%>
137 </td>
138 </tr>
139 % }
140
141 %$i++;
142 <tr class="<%$i%2 ? 'evenline' : 'oddline' %>">
143 <td class="label collection-as-table">
144 <%loc('Total')%>
145 </td>
146 <td class="value collection-as-table">
147 <%$total||''%>
148 </td>
149 </tr>
150
151 </table>