import torrus 1.0.9
[freeside.git] / httemplate / edit / cust_main / top_misc.html
index 11ea52a..a2381f3 100644 (file)
@@ -1,14 +1,38 @@
 <% &ntable("#cccccc") %>
 
-%# agent
-<% include('/elements/tr-select-agent.html', 
-              'curr_value'    => $cust_main->agentnum,
-              'label'         => "<B>${r}Agent</B>",
-              'empty_label'   => 'Select agent',
-              'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ),
-           )
+%# tags
+<% include('/elements/tr-select-cust_tag.html',
+             'custnum' => $custnum,
+             'cgi'     => $cgi,
+          )
 %>
 
+%# agent
+% if ( $cgi->param('lock_agentnum') =~ /^(\d+)$/ && $curuser->agentnum($1) ) {
+%
+%   my $agentnum = $1;
+%   $cust_main->agentnum($agentnum);
+
+    <INPUT TYPE="hidden" NAME="lock_agentnum" VALUE="<% $agentnum %>">
+    <INPUT TYPE="hidden" NAME="agentnum"      VALUE="<% $agentnum %>">
+    <TR>
+      <TD ALIGN="right">Agent</TD>
+      <TD CLASS="fsdisabled"><% $cust_main->agent->agent |h %></TD>
+    </TR>
+% } else {
+
+  <% include('/elements/tr-select-agent.html', 
+                'curr_value'    => $cust_main->agentnum,
+                'label'         => "<B>${r}Agent</B>",
+                'empty_label'   => 'Select agent',
+                'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ),
+                'viewall_right' => 'None', #override default 'View customers of all agents'
+             )
+  %>
+
+% }
+
 %# agent_custid
 % if ( $conf->exists('cust_main-edit_agent_custid') ) {
 
                   'name'        => 'signupdate',
                   'value'       => $cust_main->signupdate,
                   'label'       => 'Signup date',
-                  'format'      => $conf->config('date_format') || "%m/%d/%Y",
+                  'format'      => ( $conf->config('date_format') || "%m/%d/%Y" ),
               })
     %>
 % }