13fb2f010937a7f5f7c4ce2fde5a5c85ce199cbd
[freeside.git] / rt / share / html / Ticket / Elements / AddCustomers
1 %# Copyright (c) 2004 Ivan Kohler <ivan-rt@420.am>
2 %# Copyright (c) 2008 Freeside Internet Services, Inc.
3 %# 
4 %# This work is made available to you under the terms of Version 2 of
5 %# the GNU General Public License. A copy of that license should have
6 %# been provided with this software, but in any event can be snarfed
7 %# from www.gnu.org.
8 %# 
9 %# This work is distributed in the hope that it will be useful, but
10 %# WITHOUT ANY WARRANTY; without even the implied warranty of
11 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 %# General Public License for more details.
13 <BR>
14 <%$msg%><br>
15
16 % if (@Customers or @Services) {
17
18 <br><i>(Check box to link)</i>
19 <table>
20 % foreach my $customer (@Customers) {
21 <tr>
22   <td>
23     <input type="checkbox" name="Ticket-AddCustomer-<% $customer->{'custnum'} %>" VALUE="1" <% scalar(@Customers) == 1 ? 'CHECKED' : '' %>>
24     <& .small_custview, $customer &>
25   </td>
26 </tr>
27 % }
28 %
29 % foreach my $service (@Services) {
30 <tr>
31   <td>
32     <input type="checkbox" name="Ticket-AddService-<% $service->{'svcnum'} %>" VALUE="1" <% scalar(@Services) == 1 ? 'CHECKED' : '' %>>
33     <& .small_custview, $service &>
34     <& .small_svcview,  $service &>
35   </td>
36 </tr>
37 % }
38 </table>
39
40 % }
41
42 <%once>
43 my $freeside_url = &RT::URI::freeside::FreesideURL();
44
45 </%once>
46 <%def .small_custview>
47 % my $cust = shift;
48 <A HREF="<%$freeside_url%>/view/cust_main.cgi?<% $cust->{'custnum'}%>"><% &RT::URI::freeside::small_custview($cust->{'custnum'}, &RT::URI::freeside::FreesideGetConfig, 1) |n %></A>
49 </%def>
50 <%def .small_svcview>
51 % my $svc = shift;
52 <A HREF="<%$freeside_url%>/view/cust_svc.cgi?<% $svc->{'svcnum'}%>"><B><% $svc->{'label'} %></B></A>
53 </%def>
54 <%INIT>
55 my ($msg);
56
57 my @Customers = ();
58 if ( $CustomerString ) {
59     @Customers = &RT::URI::freeside::smart_search(
60         'search'            => $CustomerString,
61         'no_fuzzy_on_exact' => ! $FS::CurrentUser::CurrentUser->option('enable_fuzzy_on_exact'),
62     );
63 }
64
65 my @Services = ();
66 if ( $ServiceString
67       and $RT::URI::freeside::IntegrationType eq 'Internal' ) {
68     @Services = RT::URI::freeside::service_search(
69         'search'  => $ServiceString,
70     );
71 }
72
73 </%INIT>
74
75 <%ARGS>
76 $CustomerString => undef
77 $ServiceString => undef
78 </%ARGS>