ee615e8d9a15272d829a916084627bc31fdf7c30
[freeside.git] / httemplate / view / cust_main.cgi
1 <& /elements/header.html, {
2              'title' => $title,
3              'head'  => $head,
4              'nobr'  => 1,
5           }
6 &>
7 <BR>
8 % my @part_tag = $cust_main->part_tag;
9 % if ( $conf->config('cust_tag-location') eq 'top' && @part_tag ) {
10 <TABLE STYLE="margin-bottom:8px" CELLSPACING=2>
11 %   foreach my $part_tag ( @part_tag ) {
12 <TR>
13   <TD>
14       <FONT SIZE="+1"
15             <% length($part_tag->tagcolor)
16                  ? 'STYLE="background-color:#'.$part_tag->tagcolor.'"'
17                  : ''
18       %>><% $part_tag->tagname.': '. $part_tag->tagdesc |h %></FONT>
19   </TD>
20 </TR>
21 %   }
22 </TABLE>
23 % }
24
25 <& /elements/menubar.html,
26              { 'newstyle' => 1,
27                'selected' => $viewname{$view},
28                'url_base' => $cgi->url. "?custnum=$custnum;show=",
29              },
30              %views,
31 &>
32 <DIV CLASS="fstabcontainer">
33
34 <& /elements/init_overlib.html &>
35
36 <SCRIPT TYPE="text/javascript">
37 function areyousure(href, message) {
38   if (confirm(message) == true)
39     window.location.href = href;
40 }
41 </SCRIPT>
42
43 % if ( $view eq 'basics' || $view eq 'jumbo' ) {
44
45 % if ( $curuser->access_right('Edit customer') ) { 
46   <A HREF="<% $p %>edit/cust_main.cgi?<% $custnum %>"><% mt('Edit this customer') |h %></A> | 
47 % } 
48
49 % if ( $curuser->access_right('Suspend customer')
50 %        && scalar($cust_main->unsuspended_pkgs)
51 %      ) {
52   <& /elements/popup_link-cust_main.html,
53               { 'action'      => $p. 'misc/suspend_cust.html',
54                 'label'       => emt('Suspend this customer'),
55                 'actionlabel' => emt('Confirm Suspension'),
56                 'color'       => '#ff9900',
57                 'cust_main'   => $cust_main,
58                 'width'       => 616, #make room for reasons
59                 'height'      => 366,
60               }
61   &> | 
62 % }
63
64 % if ( $curuser->access_right('Unsuspend customer')
65 %        && scalar($cust_main->suspended_pkgs)
66 %      ) {
67   <& /elements/popup_link-cust_main.html,
68               { 'action'      => $p. 'misc/unsuspend_cust.html',
69                 'label'       => emt('Unsuspend this customer'),
70                 'actionlabel' => emt('Confirm Unsuspension'),
71                 #'color'       => '#ff9900',
72                 'cust_main'   => $cust_main,
73                 #'width'       => 616, #make room for reasons
74                 #'height'      => 366,
75               }
76   &> | 
77 % }
78
79 % if ( $curuser->access_right('Cancel customer')
80 %        && scalar($cust_main->ncancelled_pkgs)
81 %      ) {
82   <& /elements/popup_link-cust_main.html,
83               { 'action'      => $p. 'misc/cancel_cust.html',
84                 'label'       => emt('Cancel this customer'),
85                 'actionlabel' => emt('Confirm Cancellation'),
86                 'color'       => '#ff0000',
87                 'cust_main'   => $cust_main,
88                 'width'       => 616, #make room for reasons
89                 'height'      => 366,
90               }
91   &> | 
92 % }
93
94 % if (     $curuser->access_right('Merge customer')
95 %      and (    scalar($cust_main->ncancelled_pkgs)
96 %            || $conf->exists('deletecustomers')
97 %          )
98 %    )
99 % {
100   <& /elements/popup_link-cust_main.html,
101               { 'action'      => $p. 'misc/merge_cust.html',
102                 'label'       => emt('Merge this customer'),
103                 'actionlabel' => emt('Merge customer'),
104                 'cust_main'   => $cust_main,
105                 'width'       => 569,
106                 'height'      => 210,
107               }
108   &> | 
109 % } 
110
111 % if ( $conf->exists('deletecustomers')
112 %        && $curuser->access_right('Delete customer')
113 %      ) {
114   <A HREF="<% $p %>misc/delete-customer.cgi?<% $custnum%>"><% mt('Delete this customer') |h %></A> | 
115 % } 
116
117 % unless ( $conf->exists('disable_customer_referrals') ) { 
118   <A HREF="<% $p %>edit/cust_main.cgi?referral_custnum=<% $custnum %>"><% mt('Refer a new customer') |h %></A> | 
119   <A HREF="<% $p %>search/cust_main.cgi?referral_custnum=<% $custnum %>"><% mt('View this customer\'s referrals') |h %></A>
120 % } 
121
122 <BR><BR>
123
124 % my $br = 0;
125 % if (    $curuser->access_right('Billing event reports') 
126 %      || $curuser->access_right('View customer billing events')
127 %    ) {
128 % $br=1;
129   <A HREF="<% $p %>search/cust_event.html?custnum=<% $custnum %>"><% mt('View billing events for this customer') |h %></A>
130 % }
131
132 % my $email_link = ($cust_main->invoicing_list_emailonly) && 
133 %   include('/elements/email-link.html',
134 %            'table' => 'cust_main', 
135 %            'search_hash' => { 'custnum' => $custnum },
136 %            'label' => 'Email a notice to this customer',
137 % );
138 % if ( $email_link and $br ) {
139  | 
140 % }
141 <% $email_link || '' %>
142
143 % if ( $conf->config('cust_main-external_links') ) {
144     <% $br++ ? ' | ' : '' %>
145 %   my @links = split(/\n/, $conf->config('cust_main-external_links'));
146 %   foreach my $link (@links) {
147 %     $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next;
148 %     my($url, $label, $alt) = ($1, $2, $4);
149       <A HREF="<% $url.$custnum %>" ALT="<% $alt |h %>"><% $label |h %></A>
150 %   }
151 % }
152
153 % if ( $br ) {
154   <BR><BR>
155 % }
156
157 %my $signupurl = $conf->config('signupurl');
158 %if ( $signupurl ) {
159   <% mt('This customer\'s signup URL:') |h %>
160   <A HREF="<% $signupurl %>?ref=<% $custnum %>"><% $signupurl %>?ref=<% $custnum %></A>
161   <BR><BR>
162 % } 
163
164 <A NAME="cust_main"></A>
165 <TABLE BORDER=0>
166 <TR>
167   <TD VALIGN="top">
168     <& cust_main/contacts.html, $cust_main &>
169   </TD>
170   <TD VALIGN="top" STYLE="padding-left: 54px">
171     <& cust_main/misc.html, $cust_main &>
172 % if ( $conf->config('payby-default') ne 'HIDE' ) { 
173       <BR><& cust_main/billing.html, $cust_main &>
174 % } 
175
176   </TD>
177 </TR>
178 <TR>
179   <TD COLSPAN = 2>
180     <& cust_main/contacts_new.html, $cust_main &>
181   </TD>
182 </TR>
183 </TABLE>
184
185 % }
186
187 % if ( $view eq 'notes' || $view eq 'jumbo' ) {
188
189 %if ( $cust_main->comments =~ /[^\s\n\r]/ ) {
190 <BR><% mt('Comments') |h %> 
191 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
192 <TR>
193   <TD BGCOLOR="#ffffff">
194     <PRE><% encode_entities($cust_main->comments) %></PRE>
195   </TD>
196 </TR>
197 </TABLE></TABLE>
198 <BR><BR>
199 % }
200 <A NAME="notes">
201 % my $notecount = scalar($cust_main->notes(0));
202 % if ( ! $conf->exists('cust_main-disable_notes') || $notecount) {
203
204 %   unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) {
205       <BR>
206       <A NAME="cust_main_note"><FONT SIZE="+2"><% mt('Notes') |h %></FONT></A><BR>
207 %   }
208
209 %   if ( $curuser->access_right('Add customer note') &&
210 %        ! $conf->exists('cust_main-disable_notes')
211 %      ) {
212
213   <& /elements/popup_link-cust_main.html,
214                 'label'       => emt('Add customer note'),
215                 'action'      => $p. 'edit/cust_main_note.cgi',
216                 'actionlabel' => emt('Enter customer note'),
217                 'cust_main'   => $cust_main,
218                 'width'       => 616,
219                 'height'      => 538, #575
220   &>
221
222 %   }
223
224 <BR>
225
226 <& cust_main/notes.html, 'custnum' => $cust_main->custnum &>
227
228 % }
229 <BR>
230
231 % if(! $conf->config('disable_cust_attachment') 
232 %  and $curuser->access_right('Add attachment')) {
233 <& /elements/popup_link-cust_main.html,
234               'label'       => emt('Attach file'),
235               'action'      => $p.'edit/cust_main_attach.cgi',
236               'actionlabel' => emt('Upload file'),
237               'cust_main'   => $cust_main,
238               'width'       => 480,
239               'height'      => 296,
240 &>
241 % }
242 % if( $curuser->access_right('View attachments') ) {
243 <& cust_main/attachments.html, 'custnum' => $cust_main->custnum &>
244 %   if ($cgi->param('show_deleted')) {
245 <A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
246            ($view ? ";show=$view" : '') . '#notes' 
247            %>"><I>(<% mt('Show active attachments') |h %>)</I></A>
248 %   }
249 % elsif($curuser->access_right('View deleted attachments')) {
250 <A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
251            ($view ? ";show=$view" : '') . ';show_deleted=1#notes'
252            %>"><I>(<% mt('Show deleted attachments') |h %>)</I></A>
253 %   }
254 % }
255 <BR>
256
257 % }
258
259 % if ( $view eq 'jumbo' ) {
260     <BR>
261 % }
262 <BR>
263
264 % if ( $view eq 'tickets' || $view eq 'jumbo' ) {
265
266 % if ( $conf->config('ticket_system') ) { 
267   <& cust_main/tickets.html, $cust_main &>
268 % } 
269   <BR><BR>
270
271 % }
272
273 % if ( $view eq 'jumbo' ) { #XXX enable me && $curuser->access_right('View customer packages') { 
274
275   <A NAME="cust_pkg"><FONT SIZE="+2"><% mt('Packages') |h %></FONT></A><BR>
276 % }
277
278 % if ( $view eq 'packages' || $view eq 'jumbo' ) {
279
280 % #XXX enable me# if ( $curuser->access_right('View customer packages') { 
281 <& cust_main/packages.html, $cust_main &>
282 % #}
283
284 % }
285
286 % if ( $view eq 'jumbo' ) {
287     <BR><BR>
288     <A NAME="history"><FONT SIZE="+2"><% mt('Payment History') |h %></FONT></A>
289     <BR>
290 % }
291
292 % if ( $view eq 'payment_history' || $view eq 'jumbo' ) {
293
294 % if ( $conf->config('payby-default') ne 'HIDE' ) { 
295   <& cust_main/payment_history.html, $cust_main &>
296 % } 
297
298 % }
299
300 % if ( $view eq 'change_history' ) { #  || $view eq 'jumbo'      
301 <& cust_main/change_history.html, $cust_main &>          
302 % }
303
304 % if ( $view eq 'custom' ) { 
305 %   if ( $conf->config('cust_main-custom_link') ) {
306 <& cust_main/custom.html, $cust_main &>
307 %   } elsif ( $conf->config('cust_main-custom_content') ) {
308       <& cust_main/custom_content.html, $cust_main &>
309 %   #} else {
310 %   #  warn "custom view without cust_main-custom_link or -custom_content?";
311 %   }
312 % }
313
314 </DIV>
315 <& /elements/footer.html &>
316 <%init>
317
318 my $curuser = $FS::CurrentUser::CurrentUser;
319
320 die "access denied"
321   unless $curuser->access_right('View customer');
322
323 my $conf = new FS::Conf;
324
325 my $custnum;
326 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
327   $custnum = $1;
328 } else {
329   die "No customer specified (bad URL)!" unless $cgi->keywords;
330   my($query) = $cgi->keywords; # needs parens with my, ->keywords returns array
331   $query =~ /^(\d+)$/;
332   $custnum = $1;
333 }
334
335 my $cust_main = qsearchs( {
336   'table'     => 'cust_main',
337   'hashref'   => { 'custnum' => $custnum },
338   'extra_sql' => ' AND '. $curuser->agentnums_sql,
339 });
340 die "Customer not found!" unless $cust_main;
341
342 my $title = $cust_main->name;
343 $title = '('. $cust_main->display_custnum. ") $title"
344   if $conf->exists('cust_main-title-display_custnum');
345 $title = mt("Customer:")." ".$title;
346
347 #false laziness w/pref/pref.html and Conf.pm (cust_main-default_view)
348 tie my %views, 'Tie::IxHash',
349        emt('Basics')       => 'basics',
350        emt('Notes')        => 'notes', #notes and files?
351 ;
352 $views{emt('Tickets')}     =  'tickets'
353                                if $conf->config('ticket_system');
354 $views{emt('Packages')}    =  'packages';
355 $views{emt('Payment History')} =  'payment_history'
356                                unless $conf->config('payby-default' eq 'HIDE');
357 $views{emt('Change History')}  =  'change_history'
358   if $curuser->access_right('View customer history');
359 $views{$conf->config('cust_main-custom_title') || emt('Custom')} =  'custom'
360   if $conf->config('cust_main-custom_link')
361   || $conf->config('cust_main-custom_content');
362 $views{emt('Jumbo')}           =  'jumbo';
363
364 my %viewname = reverse %views;
365
366 my $view =  $cgi->param('show') || $curuser->default_customer_view;
367
368 my $ie_compat = $conf->config('ie-compatibility_mode');
369 my $head = '';
370 if ( $ie_compat ) {
371   $head = qq(<meta http-equiv="X-UA-Compatible" content="IE=$ie_compat" />);
372 }
373
374 </%init>