This commit was generated by cvs2svn to compensate for changes in r8690,
[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->__Value( $value_name ) );
76         push @keys, $q->Name;
77     }
78     else {
79         push @keys, $entry->__Value( $value_name );
80     }
81     $keys[-1] ||= loc('(no value)');
82     push @values, $entry->__Value( $count_name );
83 }
84
85 # XXX: Convert 1970-01-01 date to the 'Not Set'
86 # this code should be generalized!!!
87 if ( $PrimaryGroupBy =~ /(Daily|Monthly|Annually)$/ ) {
88     my $re;
89     $re = qr{1970-01-01} if $PrimaryGroupBy =~ /Daily$/;
90     $re = qr{1970-01} if $PrimaryGroupBy =~ /Monthly$/;
91     $re = qr{1970} if $PrimaryGroupBy =~ /Annually$/;
92     foreach (@keys) {
93         s/^$re/loc('Not Set')/e;
94     }
95 }
96
97 my %data;
98 my %loc_keys;
99 foreach my $key (@keys) { $data{$key} = shift @values; $loc_keys{$key} = loc($key); }
100 my @sorted_keys = map { $loc_keys{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
101 my @sorted_values = map { $data{$_}} sort { $loc_keys{$a} cmp $loc_keys{$b} } keys %loc_keys;
102
103
104 my $query_string = $m->comp('/Elements/QueryString', %ARGS);
105 </%init>
106
107 <% loc('Query:') %>&nbsp;<% $Query %><br />
108
109 % if (RT->Config->Get('DisableGD')) {
110 <% loc('Graphical charts are not available.') %><br />
111 % } else {
112 <img src="<%RT->Config->Get('WebPath')%>/Search/Chart?<%$query_string|n%>" /><br />
113 % }
114
115 <table class="collection-as-table">
116 <tr>
117 <th class="collection-as-table"><% loc($tix->Label($PrimaryGroupBy)) %>
118 </th>
119 <th class="collection-as-table"><&|/l&>Tickets</&>
120 </th>
121 </tr>
122 % my ($i,$total);
123 % while (my $key = shift @sorted_keys) {
124 % $i++;
125 % my $value = shift @sorted_values;
126 % $total += $value;
127 <tr class="<%$i%2 ? 'evenline' : 'oddline' %>">
128 <td class="label collection-as-table">
129 <%$key%>
130 </td>
131 <td class="value collection-as-table">
132 <%$value%>
133 </td>
134 </tr>
135 % }
136
137 %$i++;
138 <tr class="<%$i%2 ? 'evenline' : 'oddline' %>">
139 <td class="label collection-as-table">
140 <%loc('Total')%>
141 </td>
142 <td class="value collection-as-table">
143 <%$total||''%>
144 </td>
145 </tr>
146
147 </table>