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