import of rt 3.0.4
[freeside.git] / rt / html / Elements / Quicksearch
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <& /Elements/TitleBoxStart, title => loc("Quick search"), bodyclass => "" &>
25
26 <TABLE BORDER=0 cellspacing=0 cellpadding=1 WIDTH=100%>                       
27 <tr>                                                                          
28        <th align=left><&|/l&>Queue</&></th>                                         
29        <th align=right><font size=-1><&|/l&>New</&></font></th>
30        <th align=right><font size=-1><&|/l&>Open</&></font></th>          
31 </tr>
32
33 <%PERL>
34 my $i;
35 while (my $queue = $Queues->Next) {
36      $Tickets->ClearRestrictions;                                           
37      $Tickets->LimitStatus(VALUE => "open");                                
38      $Tickets->LimitQueue(VALUE => $queue->Name, OPERATOR => '=');            
39      my $open = $Tickets->Count();
40
41      $Tickets->ClearRestrictions;                                           
42      $Tickets->LimitStatus(VALUE => "new");
43      $Tickets->LimitQueue(VALUE => $queue->Name, OPERATOR => '=');            
44      my $new = $Tickets->Count();
45
46 </%PERL>
47 % $i++;                                                                         
48 <TR class="<% $i%2 ? 'oddline' : 'evenline'%>" >                                
49 <td><A HREF="<% $RT::WebPath%>/Search/Listing.html?ValueOfStatus=open&ValueOfStatus=new&StatusOp=%3D&QueueOp=%3D&ValueOfQueue=<%$queue->Id%>&RowsPerPage=50&NewSearch=1" TITLE="<% $queue->Description %>"><%$queue->Name%></a></TD>
50 <td align="right"><A HREF="<% $RT::WebPath%>/Search/Listing.html?ValueOfStatus=new&StatusOp=%3D&QueueOp=%3D&ValueOfQueue=<%$queue->Id%>&RowsPerPage=50&NewSearch=1"><%$new%></a></TD>
51 <td align="right"><A HREF="<% $RT::WebPath%>/Search/Listing.html?ValueOfStatus=open&StatusOp=%3D&QueueOp=%3D&ValueOfQueue=<%$queue->Id%>&RowsPerPage=50&NewSearch=1"><%$open%></a></TD>
52 </TR>
53 % }
54 </TABLE>
55 <& /Elements/TitleBoxEnd &>
56
57 <%INIT>
58 my $Queues = RT::Queues->new($session{'CurrentUser'}); 
59 $Queues->UnLimit();
60 my $Tickets = RT::Tickets->new($session{'CurrentUser'});
61 </%INIT>