cdea49dee2d7a9b01325f36f784f5f7c3e001d73
[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 %            'agent_virt_agentnum' => $cust_main->agentnum,
137 %            'label'               => 'Email a notice to this customer',
138 % );
139 % if ( $email_link and $br ) {
140  | 
141 % }
142 <% $email_link || '' %>
143
144 % if ( $curuser->access_right('Order customer package') && $conf->exists('cust_main-enable_order_package') ) {
145   | <& /elements/order_pkg_link.html, 'cust_main'=>$cust_main &>
146 % }
147
148 % if ( $conf->config('cust_main-external_links') ) {
149     <% $br++ ? ' | ' : '' %>
150 %   my @links = split(/\n/, $conf->config('cust_main-external_links'));
151 %   foreach my $link (@links) {
152 %     $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next;
153 %     my($url, $label, $alt) = ($1, $2, $4);
154       <A HREF="<% $url.$custnum %>" ALT="<% $alt |h %>"><% $label |h %></A>
155 %   }
156 % }
157
158 % if ( $br ) {
159   <BR><BR>
160 % }
161
162 %my $signupurl = $conf->config('signupurl');
163 %if ( $signupurl ) {
164   <% mt('This customer\'s signup URL:') |h %>
165   <A HREF="<% $signupurl %>?ref=<% $custnum %>"><% $signupurl %>?ref=<% $custnum %></A>
166   <BR><BR>
167 % } 
168
169 <A NAME="cust_main"></A>
170 <TABLE BORDER=0>
171 <TR>
172   <TD VALIGN="top">
173     <& cust_main/contacts.html, $cust_main &>
174   </TD>
175   <TD VALIGN="top" STYLE="padding-left: 54px">
176     <& cust_main/misc.html, $cust_main &>
177 % if ( $conf->config('payby-default') ne 'HIDE' ) { 
178       <BR><& cust_main/billing.html, $cust_main &>
179 % } 
180
181   </TD>
182 </TR>
183 <TR>
184   <TD COLSPAN = 2>
185     <& cust_main/contacts_new.html, $cust_main &>
186   </TD>
187 </TR>
188 </TABLE>
189
190 % }
191
192 % if ( $view eq 'notes' || $view eq 'jumbo' ) {
193
194 %if ( $cust_main->comments =~ /[^\s\n\r]/ ) {
195 <BR><% mt('Comments') |h %> 
196 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
197 <TR>
198   <TD BGCOLOR="#ffffff">
199     <PRE><% encode_entities($cust_main->comments) %></PRE>
200   </TD>
201 </TR>
202 </TABLE></TABLE>
203 <BR><BR>
204 % }
205 <A NAME="notes">
206 % my $notecount = scalar($cust_main->notes(0));
207 % if ( ! $conf->exists('cust_main-disable_notes') || $notecount) {
208
209 %   unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) {
210       <BR>
211       <A NAME="cust_main_note"><FONT SIZE="+2"><% mt('Notes') |h %></FONT></A><BR>
212 %   }
213
214 %   if ( $curuser->access_right('Add customer note') &&
215 %        ! $conf->exists('cust_main-disable_notes')
216 %      ) {
217
218   <& /elements/popup_link-cust_main.html,
219                 'label'       => emt('Add customer note'),
220                 'action'      => $p. 'edit/cust_main_note.cgi',
221                 'actionlabel' => emt('Enter customer note'),
222                 'cust_main'   => $cust_main,
223                 'width'       => 616,
224                 'height'      => 538, #575
225   &>
226
227 %   }
228
229 <BR>
230
231 <& cust_main/notes.html, 'custnum' => $cust_main->custnum &>
232
233 % }
234 <BR>
235
236 % if(! $conf->config('disable_cust_attachment') 
237 %  and $curuser->access_right('Add attachment')) {
238 <& /elements/popup_link-cust_main.html,
239               'label'       => emt('Attach file'),
240               'action'      => $p.'edit/cust_main_attach.cgi',
241               'actionlabel' => emt('Upload file'),
242               'cust_main'   => $cust_main,
243               'width'       => 480,
244               'height'      => 296,
245 &>
246 % }
247 % if( $curuser->access_right('View attachments') ) {
248 <& cust_main/attachments.html, 'custnum' => $cust_main->custnum &>
249 %   if ($cgi->param('show_deleted')) {
250 <A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
251            ($view ? ";show=$view" : '') . '#notes' 
252            %>"><I>(<% mt('Show active attachments') |h %>)</I></A>
253 %   }
254 % elsif($curuser->access_right('View deleted attachments')) {
255 <A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
256            ($view ? ";show=$view" : '') . ';show_deleted=1#notes'
257            %>"><I>(<% mt('Show deleted attachments') |h %>)</I></A>
258 %   }
259 % }
260 <BR>
261
262 % }
263
264 % if ( $view eq 'jumbo' ) {
265     <BR>
266 % }
267 <BR>
268
269 % if ( $view eq 'tickets' || $view eq 'jumbo' ) {
270
271 % if ( $conf->config('ticket_system') ) { 
272   <& cust_main/tickets.html, $cust_main &>
273 % } 
274   <BR><BR>
275
276 % }
277
278 % if ( $view eq 'appointments' || $view eq 'jumbo' ) {
279
280 % if ( $conf->config('ticket_system')
281 %        && $curuser->access_right('View appointments') ) { 
282   <& cust_main/appointments.html, $cust_main &>
283 % } 
284   <BR><BR>
285
286 % }
287
288 % if ( $view eq 'jumbo' ) { #XXX enable me && $curuser->access_right('View customer packages') { 
289
290   <A NAME="cust_pkg"><FONT SIZE="+2"><% mt('Packages') |h %></FONT></A><BR>
291 % }
292
293 % if ( $view eq 'packages' || $view eq 'jumbo' ) {
294
295 % #XXX enable me# if ( $curuser->access_right('View customer packages') { 
296 <& cust_main/packages.html, $cust_main &>
297 % #}
298
299 % }
300
301 % if ( $view eq 'jumbo' ) {
302     <BR><BR>
303     <A NAME="history"><FONT SIZE="+2"><% mt('Payment History') |h %></FONT></A>
304     <BR>
305 % }
306
307 % if ( $view eq 'payment_history' || $view eq 'jumbo' ) {
308
309 % if ( $conf->config('payby-default') ne 'HIDE' ) { 
310   <& cust_main/payment_history.html, $cust_main &>
311 % } 
312
313 % }
314
315 % if ( $view eq 'change_history' ) { #  || $view eq 'jumbo'      
316 <& cust_main/change_history.html, $cust_main &>          
317 % }
318
319 % if ( $view eq 'custom' ) { 
320 %   if ( $conf->config('cust_main-custom_link') ) {
321 <& cust_main/custom.html, $cust_main &>
322 %   } elsif ( $conf->config('cust_main-custom_content') ) {
323       <& cust_main/custom_content.html, $cust_main &>
324 %   #} else {
325 %   #  warn "custom view without cust_main-custom_link or -custom_content?";
326 %   }
327 % }
328
329 </DIV>
330 <& /elements/footer.html &>
331 <%init>
332
333 my $curuser = $FS::CurrentUser::CurrentUser;
334
335 die "access denied"
336   unless $curuser->access_right('View customer');
337
338 my $conf = new FS::Conf;
339
340 my $custnum;
341 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
342   $custnum = $1;
343 } else {
344   die "No customer specified (bad URL)!" unless $cgi->keywords;
345   my($query) = $cgi->keywords; # needs parens with my, ->keywords returns array
346   $query =~ /^(\d+)$/;
347   $custnum = $1;
348 }
349
350 my $cust_main = qsearchs( {
351   'table'     => 'cust_main',
352   'hashref'   => { 'custnum' => $custnum },
353   'extra_sql' => ' AND '. $curuser->agentnums_sql,
354 });
355 die "Customer not found!" unless $cust_main;
356
357 my $title = $cust_main->name;
358 $title = '('. $cust_main->display_custnum. ") $title"
359   if $conf->exists('cust_main-title-display_custnum');
360 $title = mt("Customer:")." ".$title;
361
362 #false laziness w/pref/pref.html and Conf.pm (cust_main-default_view)
363 tie my %views, 'Tie::IxHash',
364        emt('Basics')           => 'basics',
365        emt('Notes')            => 'notes', #notes and files?
366 ;
367 if ( $conf->config('ticket_system') ) {
368   $views{emt('Tickets')}       =  'tickets';
369   $views{emt('Appointments')}  =  'appointments'
370     if $curuser->access_right('View appointments');
371 }
372 $views{emt('Packages')}        =  'packages';
373 $views{emt('Payment History')} =  'payment_history'
374                                unless $conf->config('payby-default' eq 'HIDE');
375 $views{emt('Change History')}  =  'change_history'
376   if $curuser->access_right('View customer history');
377 $views{$conf->config('cust_main-custom_title') || emt('Custom')} =  'custom'
378   if $conf->config('cust_main-custom_link')
379   || $conf->config('cust_main-custom_content');
380 $views{emt('Jumbo')}           =  'jumbo';
381
382 my %viewname = reverse %views;
383
384 my $view =  $cgi->param('show') || $curuser->default_customer_view;
385
386 my $ie_compat = $conf->config('ie-compatibility_mode');
387 my $head = '';
388 if ( $ie_compat ) {
389   $head = qq(<meta http-equiv="X-UA-Compatible" content="IE=$ie_compat" />);
390 }
391
392 </%init>