X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main.cgi;h=0b6148da06a9e7e172a63cf44742ded29d567916;hb=89da4b96c4e2fce7079be8d2729750c088f8035b;hp=08d99d8e8d73e4e9590347e7797967417ec4e4b4;hpb=e5e706ef5cebf3db8754801a9bedf90e9a796ef9;p=freeside.git diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index 08d99d8e8..0b6148da0 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -1,9 +1,25 @@ <% include('/elements/header.html', { - 'title' => "Customer View: ". $cust_main->name, + 'title' => "Customer: ". $cust_main->name, 'nobr' => 1, }) %>
+% my @part_tag = $cust_main->part_tag; +% if ( $conf->config('cust_tag-location') eq 'top' && @part_tag ) { + +% foreach my $part_tag ( @part_tag ) { + + + +% } +
+ tagcolor) + ? 'STYLE="background-color:#'.$part_tag->tagcolor.'"' + : '' + %>><% $part_tag->tagname.': '. $part_tag->tagdesc |h %> +
+% } <% include('/elements/menubar.html', { 'newstyle' => 1, @@ -13,7 +29,7 @@ %views, ) %> -
+
<% include('/elements/init_overlib.html') %> @@ -74,6 +90,9 @@ function areyousure(href, message) { This customer's signup URL: <% $signupurl %>?ref=<% $custnum %>

% } +%if ( $conf->exists('maestro-status_test') ) { + Test maestro status

+% } @@ -128,7 +147,7 @@ Comments 'actionlabel' => 'Enter customer note', 'cust_main' => $cust_main, 'width' => 616, - 'height' => 408, + 'height' => 538, #575 ) %> @@ -153,16 +172,18 @@ Comments ) %> % } +% if( $curuser->access_right('View attachments') ) { <% include('cust_main/attachments.html', 'custnum' => $cust_main->custnum ) %> -% if($cgi->param('show_deleted')) { +% if ($cgi->param('show_deleted')) { ">(Show active attachments) -% } +% } % elsif($curuser->access_right('View deleted attachments')) { ">(Show deleted attachments) +% } % }
@@ -212,6 +233,11 @@ Comments <% include('cust_main/change_history.html', $cust_main ) %> % } +% if ( $view eq 'custom' ) { +<% include('cust_main/custom.html', $cust_main ) %> +% } + + <% include('/elements/footer.html') %> <%init> @@ -251,6 +277,8 @@ $views{'Payment History'} = 'payment_history' unless $conf->config('payby-default' eq 'HIDE'); $views{'Change History'} = 'change_history' if $curuser->access_right('View customer history'); +$views{$conf->config('cust_main-custom_title') || 'Custom'} = 'custom' + if $conf->config('cust_main-custom_link'); $views{'Jumbo'} = 'jumbo'; my %viewname = reverse %views;