X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fmisc.html;h=ed9b91a617be9a34e67a45ebbfc041516dc8a36f;hb=1a0bdda475472f8bebb06517af4ec1e8ce78865f;hp=b98e9dc3ef205444be6ddf85d51b7e0ba088f7e9;hpb=259921ee5e89a68fc79b2a358643c558ebb4fdaa;p=freeside.git diff --git a/httemplate/view/cust_main/misc.html b/httemplate/view/cust_main/misc.html index b98e9dc3e..ed9b91a61 100644 --- a/httemplate/view/cust_main/misc.html +++ b/httemplate/view/cust_main/misc.html @@ -1,19 +1,36 @@ <% ntable("#cccccc") %><% &ntable("#cccccc",2) %> - Customer number + <% mt('Customer number') |h %> <% $cust_main->display_custnum %> - Status + <% mt('Status') |h %> <% ucfirst($cust_main->status) %> -%unless ( scalar(@agentnums) == 1 ) { +% my @part_tag = $cust_main->part_tag; +% if ( $conf->config('cust_tag-location') =~ /^(cust_misc|)$/ && @part_tag ) { + + <% mt('Tags') |h %> + +% foreach my $part_tag ( @part_tag ) { + tagcolor) + ? 'STYLE="background-color:#'.$part_tag->tagcolor.'"' + : '' %> + ><% $part_tag->tagname.': '. $part_tag->tagdesc |h %> +
+% } + + +% } + +%unless ( scalar(@agentnums) == 1 +% && !$curuser->access_right('View customers of all agents') ) { % my $agent = qsearchs('agent',{ 'agentnum' => $cust_main->agentnum } ); - Agent + <% mt('Agent') |h %> <% $agent->agentnum %>: <% $agent->agent %> % } @@ -22,7 +39,7 @@ % && ! $conf->exists('cust_main-default_agent_custid') ) { - Agent customer ref# + <% mt('Agent customer ref#') |h %> <% $cust_main->agent_custid %> % @@ -30,8 +47,8 @@ % #if ( $cust_main->classnum ) { - Class - <% $cust_main->classname || '(none)' %> + <% mt('Class') |h %> + <% $cust_main->classname || '('.emt('none').')' %> % #} @@ -41,14 +58,14 @@ % } ); - Advertising source + <% mt('Advertising source') |h %> <% $referral->refnum %>: <% $referral->referral%> % } - Referring Customer + <% mt('Referring Customer') |h %> % % my $referring_cust_main = ''; @@ -76,12 +93,12 @@ - Order taker + <% mt('Order taker') |h %> <% $cust_main->otaker %> - Signup Date + <% mt('Signup Date') |h %> <% $cust_main->signupdate ? time2str($date_format, $cust_main->signupdate) : '' %> @@ -93,7 +110,7 @@ % : ''; - Date of Birth + <% mt('Date of Birth') |h %> <% $dt ? $dt->strftime($date_format) : '' %> @@ -102,7 +119,7 @@ % if ( $conf->exists('cust_main-require_censustract') ) { - Census tract + <% mt('Census tract') |h %> <% $cust_main->censustract %> @@ -115,6 +132,8 @@ my( $cust_main ) = @_; my $conf = new FS::Conf; my $date_format = ($conf->config('date_format') || "%m/%d/%Y"); -my @agentnums = $FS::CurrentUser::CurrentUser->agentnums; +my $curuser = $FS::CurrentUser::CurrentUser; + +my @agentnums = $curuser->agentnums;