01c7367c43ef8408b0181de5688ec1e4b41d57da
[freeside.git] / rt / html / Ticket / Elements / AddCustomers
1 %# Copyright (c) 2004 Ivan Kohler <ivan-rt@420.am>
2 %# 
3 %# This work is made available to you under the terms of Version 2 of
4 %# the GNU General Public License. A copy of that license should have
5 %# been provided with this software, but in any event can be snarfed
6 %# from www.gnu.org.
7 %# 
8 %# This work is distributed in the hope that it will be useful, but
9 %# WITHOUT ANY WARRANTY; without even the implied warranty of
10 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 %# General Public License for more details.
12 <BR>
13 <%$msg%><br>
14
15 % if (@Customers) {
16
17 <br><i>(Check box to link)<i>
18 <table>
19 % foreach my $customer (@Customers) {
20 <tr>
21   <td>
22     <input type="checkbox" name="Ticket-AddCustomer-<% $customer->{'custnum'} %>" VALUE="1" <% scalar(@Customers) == 1 ? 'CHECKED' : '' %>>
23     <A HREF="<%$freeside_url%>/view/cust_main.cgi?<% $customer->{'custnum'} %>"><% &RT::URI::freeside::small_custview($customer->{'custnum'}, &RT::URI::freeside::FreesideGetConfig('countrydefault'), 1) |n %>
24   </td>
25 </tr>
26 % }
27
28 % }
29
30 <%INIT>
31 my ($msg);
32
33 my $freeside_url = &RT::URI::freeside::FreesideURL();
34
35 my @Customers = ();
36 if ( $CustomerString ) {
37     @Customers = &RT::URI::freeside::smart_search( 'search' => $CustomerString );
38 }
39
40 my @Services = ();
41 if ($ServiceString) {
42     @Services = (); #service_search();
43 }
44
45 </%INIT>
46
47 <%ARGS>
48 $CustomerString => undef
49 $ServiceString => undef
50 </%ARGS>