diff options
author | Mark Wells <mark@freeside.biz> | 2012-09-29 16:36:46 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-09-29 16:36:46 -0700 |
commit | 33beebf4cb42eba3e1dd868ad5e0af102de961da (patch) | |
tree | 860712543dcc74ff2402a4ed8d73e8cd553e62d4 /httemplate/elements/tr-select-agent.html | |
parent | 7ac86daf67b0a95153b736d5811f9050363f6553 (diff) |
update address standardization for cust_location changes
Diffstat (limited to 'httemplate/elements/tr-select-agent.html')
-rw-r--r-- | httemplate/elements/tr-select-agent.html | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/httemplate/elements/tr-select-agent.html b/httemplate/elements/tr-select-agent.html index ce03c40f5..321bd6b32 100644 --- a/httemplate/elements/tr-select-agent.html +++ b/httemplate/elements/tr-select-agent.html @@ -22,7 +22,7 @@ Example: ); </%doc> -% if ( scalar(@agents) == 1 ) { +% if ( scalar(@agents) == 1 || $opt{'fixed'} ) { <INPUT TYPE = "hidden" NAME = "<% $opt{'field'} || 'agentnum' %>" @@ -30,9 +30,20 @@ Example: VALUE = "<% $agents[0]->agentnum %>" > -%# YUCK. empty row so we don't throw g_row in edit.html off :/ - <TR> - </TR> +% if ( scalar(@agents) != 1 ) { + <TR> + <TD ALIGN="right"><% $opt{'label'} || emt('Agent') %></TD> + <TD BGCOLOR="#dddddd" <% $colspan %>> +% my $agent = qsearchs('agent', { 'agentnum' => $agentnum }); + <% $agent ? $agent->agent : '(all)' |h %> + </TD> + </TR> + +% } else { # YUCK. empty row so we don't throw g_row in edit.html off :/ + <TR> + </TR> +% } +% % } else { <TR> |