1 <& /elements/header.html, {
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 ) {
15 <% length($part_tag->tagcolor)
16 ? 'STYLE="background-color:#'.$part_tag->tagcolor.'"'
18 %>><% $part_tag->tagname.': '. $part_tag->tagdesc |h %></FONT>
25 <& /elements/menubar.html,
27 'selected' => $viewname{$view},
28 'url_base' => $cgi->url. "?custnum=$custnum;show=",
32 <DIV CLASS="fstabcontainer">
34 <& /elements/init_overlib.html &>
36 <SCRIPT TYPE="text/javascript">
37 function areyousure(href, message) {
38 if (confirm(message) == true)
39 window.location.href = href;
43 % if ( $view eq 'basics' || $view eq 'jumbo' ) {
45 % if ( $curuser->access_right('Edit customer') ) {
46 <A HREF="<% $p %>edit/cust_main.cgi?<% $custnum %>"><% mt('Edit this customer') |h %></A> |
49 % if ( $curuser->access_right('Cancel customer')
50 % && $cust_main->ncancelled_pkgs
53 <& /elements/popup_link-cust_main.html,
54 { 'action' => $p. 'misc/cancel_cust.html',
55 'label' => emt('Cancel this customer'),
56 'actionlabel' => emt('Confirm Cancellation'),
58 'cust_main' => $cust_main,
59 'width' => 616, #make room for reasons
66 % if ( $curuser->access_right('Merge customer') ) {
68 <& /elements/popup_link-cust_main.html,
69 { 'action' => $p. 'misc/merge_cust.html',
70 'label' => emt('Merge this customer'),
71 'actionlabel' => emt('Merge customer'),
72 'cust_main' => $cust_main,
80 % if ( $conf->exists('deletecustomers')
81 % && $curuser->access_right('Delete customer')
83 <A HREF="<% $p %>misc/delete-customer.cgi?<% $custnum%>"><% mt('Delete this customer') |h %></A> |
86 % unless ( $conf->exists('disable_customer_referrals') ) {
87 <A HREF="<% $p %>edit/cust_main.cgi?referral_custnum=<% $custnum %>"><% mt('Refer a new customer') |h %></A> |
88 <A HREF="<% $p %>search/cust_main.cgi?referral_custnum=<% $custnum %>"><% mt('View this customer\'s referrals') |h %></A>
94 % if ( $curuser->access_right('Billing event reports')
95 % || $curuser->access_right('View customer billing events')
98 <A HREF="<% $p %>search/cust_event.html?custnum=<% $custnum %>"><% mt('View billing events for this customer') |h %></A>
101 % my $email_link = ($cust_main->invoicing_list_emailonly) &&
102 % include('/elements/email-link.html',
103 % 'table' => 'cust_main',
104 % 'search_hash' => { 'custnum' => $custnum },
105 % 'label' => 'Email a notice to this customer',
107 % if ( $email_link and $br ) {
110 <% $email_link || '' %>
112 % if ( $conf->config('cust_main-external_links') ) {
113 <% $br++ ? ' | ' : '' %>
114 % my @links = split(/\n/, $conf->config('cust_main-external_links'));
115 % foreach my $link (@links) {
116 % $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next;
117 % my($url, $label, $alt) = ($1, $2, $4);
118 <A HREF="<% $url.$custnum %>" ALT="<% $alt |h %>"><% $label |h %></A>
127 %my $signupurl = $conf->config('signupurl');
129 <% mt('This customer\'s signup URL:') |h %>
130 <A HREF="<% $signupurl %>?ref=<% $custnum %>"><% $signupurl %>?ref=<% $custnum %></A>
134 %if ( $conf->exists('maestro-status_test') ) {
135 <A HREF="<% $p %>misc/maestro-customer_status-test.html?<% $custnum %>"><% mt('Test maestro status') |h %></A>
139 <A NAME="cust_main"></A>
143 <& cust_main/contacts.html, $cust_main &>
145 <TD VALIGN="top" STYLE="padding-left: 54px">
146 <& cust_main/misc.html, $cust_main &>
147 % if ( $conf->config('payby-default') ne 'HIDE' ) {
148 <BR><& cust_main/billing.html, $cust_main &>
157 % if ( $view eq 'notes' || $view eq 'jumbo' ) {
159 %if ( $cust_main->comments =~ /[^\s\n\r]/ ) {
160 <BR><% mt('Comments') |h %>
161 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
163 <TD BGCOLOR="#ffffff">
164 <PRE><% encode_entities($cust_main->comments) %></PRE>
171 % my $notecount = scalar($cust_main->notes(0));
172 % if ( ! $conf->exists('cust_main-disable_notes') || $notecount) {
174 % unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) {
176 <A NAME="cust_main_note"><FONT SIZE="+2"><% mt('Notes') |h %></FONT></A><BR>
179 % if ( $curuser->access_right('Add customer note') &&
180 % ! $conf->exists('cust_main-disable_notes')
183 <& /elements/popup_link-cust_main.html,
184 'label' => emt('Add customer note'),
185 'action' => $p. 'edit/cust_main_note.cgi',
186 'actionlabel' => emt('Enter customer note'),
187 'cust_main' => $cust_main,
189 'height' => 538, #575
196 <& cust_main/notes.html, 'custnum' => $cust_main->custnum &>
201 % if(! $conf->config('disable_cust_attachment')
202 % and $curuser->access_right('Add attachment')) {
203 <& /elements/popup_link-cust_main.html,
204 'label' => emt('Attach file'),
205 'action' => $p.'edit/cust_main_attach.cgi',
206 'actionlabel' => emt('Upload file'),
207 'cust_main' => $cust_main,
212 % if( $curuser->access_right('View attachments') ) {
213 <& cust_main/attachments.html, 'custnum' => $cust_main->custnum &>
214 % if ($cgi->param('show_deleted')) {
215 <A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
216 ($view ? ";show=$view" : '') . '#notes'
217 %>"><I>(<% mt('Show active attachments') |h %>)</I></A>
219 % elsif($curuser->access_right('View deleted attachments')) {
220 <A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
221 ($view ? ";show=$view" : '') . ';show_deleted=1#notes'
222 %>"><I>(<% mt('Show deleted attachments') |h %>)</I></A>
229 % if ( $view eq 'jumbo' ) {
231 <A NAME="tickets"><FONT SIZE="+2"><% mt('Tickets') |h %></FONT></A><BR>
234 % if ( $view eq 'tickets' || $view eq 'jumbo' ) {
236 % if ( $conf->config('ticket_system') ) {
237 <& cust_main/tickets.html, $cust_main &>
243 % if ( $view eq 'jumbo' ) { #XXX enable me && $curuser->access_right('View customer packages') {
245 <A NAME="cust_pkg"><FONT SIZE="+2"><% mt('Packages') |h %></FONT></A><BR>
248 % if ( $view eq 'packages' || $view eq 'jumbo' ) {
250 % #XXX enable me# if ( $curuser->access_right('View customer packages') {
251 <& cust_main/packages.html, $cust_main &>
256 % if ( $view eq 'jumbo' ) {
258 <A NAME="history"><FONT SIZE="+2"><% mt('Payment History') |h %></FONT></A>
262 % if ( $view eq 'payment_history' || $view eq 'jumbo' ) {
264 % if ( $conf->config('payby-default') ne 'HIDE' ) {
265 <& cust_main/payment_history.html, $cust_main &>
270 % if ( $view eq 'change_history' ) { # || $view eq 'jumbo'
271 <& cust_main/change_history.html, $cust_main &>
274 % if ( $view eq 'custom' ) {
275 <& cust_main/custom.html, $cust_main &>
279 <& /elements/footer.html &>
282 my $curuser = $FS::CurrentUser::CurrentUser;
285 unless $curuser->access_right('View customer');
287 my $conf = new FS::Conf;
290 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
293 die "No customer specified (bad URL)!" unless $cgi->keywords;
294 my($query) = $cgi->keywords; # needs parens with my, ->keywords returns array
299 my $cust_main = qsearchs( {
300 'table' => 'cust_main',
301 'hashref' => { 'custnum' => $custnum },
302 'extra_sql' => ' AND '. $curuser->agentnums_sql,
304 die "Customer not found!" unless $cust_main;
306 my $title = $cust_main->name;
307 $title = '('. $cust_main->display_custnum. ") $title"
308 if $conf->exists('cust_main-title-display_custnum');
309 $title = mt("Customer:")." ".$title;
311 #false laziness w/pref/pref.html and Conf.pm (cust_main-default_view)
312 tie my %views, 'Tie::IxHash',
313 emt('Basics') => 'basics',
314 emt('Notes') => 'notes', #notes and files?
316 $views{emt('Tickets')} = 'tickets'
317 if $conf->config('ticket_system');
318 $views{emt('Packages')} = 'packages';
319 $views{emt('Payment History')} = 'payment_history'
320 unless $conf->config('payby-default' eq 'HIDE');
321 $views{emt('Change History')} = 'change_history'
322 if $curuser->access_right('View customer history');
323 $views{$conf->config('cust_main-custom_title') || emt('Custom')} = 'custom'
324 if $conf->config('cust_main-custom_link');
325 $views{emt('Jumbo')} = 'jumbo';
327 my %viewname = reverse %views;
329 my $view = $cgi->param('show') || $curuser->default_customer_view;
331 my $ie_compat = $conf->config('ie-compatibility_mode');
334 $head = qq(<meta http-equiv="X-UA-Compatible" content="IE=$ie_compat" />);