X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fmisc.html;h=2953287214f9253563dbcb484107cb2d51ba9b14;hb=83f70978574fef3401020cb11cf651d12c139b3b;hp=2cfe0263f8c2d9333d16521c0c79536dd5d84743;hpb=40a7b3dc653e099f7bd0bd762b649b04c4432db2;p=freeside.git diff --git a/httemplate/view/cust_main/misc.html b/httemplate/view/cust_main/misc.html index 2cfe0263f..295328721 100644 --- a/httemplate/view/cust_main/misc.html +++ b/httemplate/view/cust_main/misc.html @@ -1,23 +1,36 @@ -<% ntable("#cccccc") %><% &ntable("#cccccc",2) %> + - + - + -%my $agent; -%if ( $num_agents == 1 ) { -% my @agents = qsearchs( 'agent', {} ); -% $agent = $agents[0]; -%} else { -% $agent = qsearchs('agent',{ 'agentnum' => $cust_main->agentnum } ); +% my @part_tag = $cust_main->part_tag; +% if ( $conf->config('cust_tag-location') =~ /^(cust_misc|)$/ && @part_tag ) { + + + + +% } + +%unless ( scalar(@agentnums) == 1 +% && !$curuser->access_right('View customers of all agents') ) { +% my $agent = qsearchs('agent',{ 'agentnum' => $cust_main->agentnum } ); - + % } @@ -26,7 +39,7 @@ % && ! $conf->exists('cust_main-default_agent_custid') ) { - + % @@ -34,8 +47,8 @@ % #if ( $cust_main->classnum ) { - - + + % #} @@ -45,14 +58,14 @@ % } ); - + % } - + - + - + @@ -97,7 +110,7 @@ % : ''; - + @@ -106,21 +119,46 @@ % if ( $conf->exists('cust_main-require_censustract') ) { - + % } -
Customer number<% mt('Customer number') |h %> <% $cust_main->display_custnum %>
Status<% mt('Status') |h %> <% ucfirst($cust_main->status) %>
<% mt('Tags') |h %> +% foreach my $part_tag ( @part_tag ) { + tagcolor) + ? 'STYLE="background-color:#'.$part_tag->tagcolor.'"' + : '' %> + ><% $part_tag->tagname.': '. $part_tag->tagdesc |h %> +
+% } +
Agent<% mt('Agent') |h %> <% $agent->agentnum %>: <% $agent->agent %>
Agent customer ref#<% mt('Agent customer ref#') |h %> <% $cust_main->agent_custid %>
Class<% $cust_main->classname || '(none)' %><% mt('Class') |h %><% $cust_main->classname || '('.emt('none').')' %>
Advertising source<% mt('Advertising source') |h %> <% $referral->refnum %>: <% $referral->referral%>
Referring Customer<% mt('Referring Customer') |h %> % % my $referring_cust_main = ''; @@ -64,7 +77,7 @@ % -<%$cust_main->referral_custnum %>: +<%$referring_cust_main->display_custnum %>: <% ( $referring_cust_main->company ? $referring_cust_main->company. ' ('. @@ -80,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) : '' %>
Date of Birth<% mt('Date of Birth') |h %> <% $dt ? $dt->strftime($date_format) : '' %>
Census tract + <% mt('Census tract ([_1])', $cust_main->censusyear) |h %> + <% $cust_main->censustract %>
+% if ( $cust_main->district ) { + + + <% mt('Tax district') |h %> + <% $cust_main->district %> + + +% } + + +% if ( $conf->exists('ticket_system-selfservice_edit_subject') ) { + + + <% mt('Edit ticket subjects') %> + <% $cust_main->edit_subject ? 'yes' : 'no' %> + + +% } + +% foreach (sort { $a cmp $b } $cust_main->virtual_fields) { + <% $cust_main->pvf($_)->widget('HTML', 'view', $cust_main->getfield($_)) %> +% } + + <%init> my( $cust_main ) = @_; my $conf = new FS::Conf; my $date_format = ($conf->config('date_format') || "%m/%d/%Y"); -my $sth = dbh->prepare('SELECT COUNT(*) FROM agent') or die dbh->errstr; -$sth->execute or die $sth->errstr; -my $num_agents = $sth->fetchrow_arrayref->[0]; +my $curuser = $FS::CurrentUser::CurrentUser; + +my @agentnums = $curuser->agentnums;