X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Ftop_misc.html;h=229b84ba41c4175c0fa73fcb3bbc0af59ac4fd8d;hb=b5dbd9e1bcbb701a20ed23e723b1e0105fd7c1a1;hp=441a36334f077515867999f11d4b418a91de775e;hpb=75a2e8dbba40070ced5503457696baf5d538b953;p=freeside.git diff --git a/httemplate/edit/cust_main/top_misc.html b/httemplate/edit/cust_main/top_misc.html index 441a36334..229b84ba4 100644 --- a/httemplate/edit/cust_main/top_misc.html +++ b/httemplate/edit/cust_main/top_misc.html @@ -1,27 +1,41 @@ <% &ntable("#cccccc") %> %# tags -<% include('/elements/tr-select-cust_tag.html', +<& /elements/tr-select-cust_tag.html, 'custnum' => $custnum, 'cgi' => $cgi, - ) -%> +&> %# agent -<% include('/elements/tr-select-agent.html', - 'curr_value' => $cust_main->agentnum, - 'label' => "${r}Agent", - 'empty_label' => 'Select agent', - 'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ), - 'viewall_right' => 'None', #override default 'View customers of all agents' - ) -%> +% if ( $cgi->param('lock_agentnum') =~ /^(\d+)$/ && $curuser->agentnum($1) ) { +% +% my $agentnum = $1; +% $cust_main->agentnum($agentnum); + + + + + <% mt('Agent') |h %> + <% $cust_main->agent->agent |h %> + + +% } else { + + <& /elements/tr-select-agent.html, + 'curr_value' => $cust_main->agentnum, + 'label' => "${r}".emt('Agent')."", + 'empty_label' => emt('Select agent'), + 'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ), + 'viewall_right' => emt('None'), + &> + +% } %# agent_custid % if ( $conf->exists('cust_main-edit_agent_custid') ) { - Customer identifier + <% mt('Customer identifier') |h %> @@ -32,13 +46,10 @@ % } %# class -<% include('/elements/tr-select-cust_class.html', +<& /elements/tr-select-cust_class.html, 'curr_value' => $cust_main->classnum, - 'label' => "Class", - #'empty_label' => '(none)', - #'disable_empty' => - ) -%> + 'label' => emt("Class"), +&> %# referral (advertising source) %my $refnum = $cust_main->refnum || $conf->config('referraldefault') || 0; @@ -48,10 +59,9 @@ % } else { - <% include('/elements/tr-select-part_referral.html', + <& /elements/tr-select-part_referral.html, 'curr_value' => $refnum - ) - %> + &> % } @@ -64,7 +74,7 @@ %) { - Referring customer + <% mt('Referring customer') |h %> <% $cust_main->referral_custnum %>: <% $referring_cust_main->name %> @@ -76,12 +86,10 @@ Referring customer - - <% include('/elements/search-cust_main.html', + <& /elements/search-cust_main.html, 'field_name' => 'referral_custnum', 'curr_value' => $cust_main->referral_custnum, - ) - %> + &> @@ -91,13 +99,13 @@ %# signup date % if ( $conf->exists('cust_main-edit_signupdate') ) { - <% include('/elements/tr-input-date-field.html', { + <& /elements/tr-input-date-field.html, { 'name' => 'signupdate', 'value' => $cust_main->signupdate, - 'label' => 'Signup date', + 'label' => emt('Signup date'), 'format' => ( $conf->config('date_format') || "%m/%d/%Y" ), - }) - %> + } + &> % }